/** * native-date-time-format.class */ import { pDateTimeFormats } from './date-time-format.class'; export const P_NATIVE_DATE_TIME_FORMATS: pDateTimeFormats = { parseInput: null, fullPickerInput: {year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: 'numeric'}, datePickerInput: {year: 'numeric', month: 'numeric', day: 'numeric'}, timePickerInput: {hour: 'numeric', minute: 'numeric'}, monthYearLabel: {year: 'numeric', month: 'short'}, dateA11yLabel: {year: 'numeric', month: 'long', day: 'numeric'}, monthYearA11yLabel: {year: 'numeric', month: 'long'}, };