ipsos-components
Version:
Material Design components for Angular
23 lines (19 loc) • 505 B
text/typescript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {MatDateFormats} from '@angular/material';
export const MAT_MOMENT_DATE_FORMATS: MatDateFormats = {
parse: {
dateInput: 'l',
},
display: {
dateInput: 'l',
monthYearLabel: 'MMM YYYY',
dateA11yLabel: 'LL',
monthYearA11yLabel: 'MMMM YYYY',
},
};