@jsonforms/angular-material
Version:
Material Renderer Set for Angular module of JSON Forms
25 lines (21 loc) • 466 B
text/typescript
import { Injectable } from '@angular/core';
export class MyFormat {
displayFormat = 'M/D/YYYY';
setDisplayFormat(displayFormat: string) {
this.displayFormat = displayFormat;
}
get display() {
return {
monthYearLabel: 'YYYY-MM',
dateA11yLabel: 'YYYY-MM-DD',
monthYearA11yLabel: 'YYYY-MM',
dateInput: this.displayFormat,
};
}
get parse() {
return {
dateInput: this.displayFormat,
};
}
}