@angular/material/core#MatDateFormats TypeScript Examples
The following examples show how to use
@angular/material/core#MatDateFormats.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: date-functions.ts From halstack-angular with Apache License 2.0 | 7 votes |
DAYJS_DATE_FORMATS: MatDateFormats = {
parse: {
dateInput: "DD/MM/YYYY",
},
display: {
dateInput: "DD/MM/YYYY",
monthYearLabel: "MMMM YYYY",
dateA11yLabel: "DD/MM/YYYY",
monthYearA11yLabel: "MMMM YYYY",
},
}
Example #2
Source File: format-datepicker.ts From fyle-mobile-app with MIT License | 7 votes |
APP_DATE_FORMATS: MatDateFormats = {
parse: {
dateInput: { month: 'short', year: 'numeric', day: 'numeric' },
},
display: {
dateInput: 'MMM DD, YYYY',
monthYearLabel: { year: 'numeric', month: 'numeric' },
dateA11yLabel: { year: 'numeric', month: 'long', day: 'numeric' },
monthYearA11yLabel: { year: 'numeric', month: 'long' },
},
}
Example #3
Source File: calendar.ts From ngx-mat-datetime-picker with MIT License | 6 votes |
constructor(_intl: MatDatepickerIntl,
@Optional() private _dateAdapter: NgxMatDateAdapter<D>,
@Optional() @Inject(MAT_DATE_FORMATS) private _dateFormats: MatDateFormats,
private _changeDetectorRef: ChangeDetectorRef) {
if (!this._dateAdapter) {
throw createMissingDateImplError('NgxDateAdapter');
}
if (!this._dateFormats) {
throw createMissingDateImplError('MAT_DATE_FORMATS');
}
this._intlChanges = _intl.changes.subscribe(() => {
_changeDetectorRef.markForCheck();
this.stateChanges.next();
});
}
Example #4
Source File: native-date-formats.ts From ngx-mat-datetime-picker with MIT License | 6 votes |
NGX_MAT_NATIVE_DATE_FORMATS: MatDateFormats = {
parse: {
dateInput: DEFAULT_DATE_INPUT,
},
display: {
dateInput: DEFAULT_DATE_INPUT,
monthYearLabel: { year: 'numeric', month: 'short' },
dateA11yLabel: { year: 'numeric', month: 'long', day: 'numeric' },
monthYearA11yLabel: { year: 'numeric', month: 'long' },
}
}
Example #5
Source File: datetime-input.ts From ngx-mat-datetime-picker with MIT License | 6 votes |
constructor(
private _elementRef: ElementRef<HTMLInputElement>,
@Optional() public _dateAdapter: NgxMatDateAdapter<D>,
@Optional() @Inject(MAT_DATE_FORMATS) private _dateFormats: MatDateFormats,
@Optional() private _formField: MatFormField) {
if (!this._dateAdapter) {
throw createMissingDateImplError('NgxMatDateAdapter');
}
if (!this._dateFormats) {
throw createMissingDateImplError('MAT_DATE_FORMATS');
}
// Update the displayed date when the locale changes.
this._localeSubscription = _dateAdapter.localeChanges.subscribe(() => {
this.value = this.value;
});
}
Example #6
Source File: month-view.ts From ngx-mat-datetime-picker with MIT License | 6 votes |
constructor(private _changeDetectorRef: ChangeDetectorRef,
@Optional() @Inject(MAT_DATE_FORMATS) private _dateFormats: MatDateFormats,
@Optional() public _dateAdapter: NgxMatDateAdapter<D>,
@Optional() private _dir?: Directionality) {
if (!this._dateAdapter) {
throw createMissingDateImplError('NgxMatDateAdapter');
}
if (!this._dateFormats) {
throw createMissingDateImplError('MAT_DATE_FORMATS');
}
this._activeDate = this._dateAdapter.today();
}
Example #7
Source File: year-view.ts From ngx-mat-datetime-picker with MIT License | 6 votes |
constructor(private _changeDetectorRef: ChangeDetectorRef,
@Optional() @Inject(MAT_DATE_FORMATS) private _dateFormats: MatDateFormats,
@Optional() public _dateAdapter: NgxMatDateAdapter<D>,
@Optional() private _dir?: Directionality) {
if (!this._dateAdapter) {
throw createMissingDateImplError('NgxMatDateAdapter');
}
if (!this._dateFormats) {
throw createMissingDateImplError('MAT_DATE_FORMATS');
}
this._activeDate = this._dateAdapter.today();
}
Example #8
Source File: moment-formats.ts From ngx-mat-datetime-picker with MIT License | 6 votes |
NGX_MAT_MOMENT_FORMATS: MatDateFormats = {
parse: {
dateInput: DEFAULT_DATE_INPUT,
},
display: {
dateInput: DEFAULT_DATE_INPUT,
monthYearLabel: 'MMM YYYY',
dateA11yLabel: 'LL',
monthYearA11yLabel: 'MMMM YYYY',
},
}
Example #9
Source File: ngx-mat-datefns-date-formats.ts From ngx-mat-datefns-date-adapter with MIT License | 6 votes |
NGX_MAT_DATEFNS_DATE_FORMATS: MatDateFormats = {
parse: {
dateInput: 'P',
},
display: {
dateInput: 'P',
monthYearLabel: 'MMM yyyy',
dateA11yLabel: 'PP',
monthYearA11yLabel: 'MMMM yyyy',
},
}
Example #10
Source File: calendar.ts From ngx-mat-datetime-picker with MIT License | 5 votes |
constructor(private _intl: MatDatepickerIntl,
@Inject(forwardRef(() => NgxMatCalendar)) public calendar: NgxMatCalendar<D>,
@Optional() private _dateAdapter: NgxMatDateAdapter<D>,
@Optional() @Inject(MAT_DATE_FORMATS) private _dateFormats: MatDateFormats,
changeDetectorRef: ChangeDetectorRef) {
this.calendar.stateChanges.subscribe(() => changeDetectorRef.markForCheck());
}