UNPKG

@jsonforms/angular-material

Version:

Material Renderer Set for Angular module of JSON Forms

25 lines (21 loc) 466 B
import { Injectable } from '@angular/core'; @Injectable() 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, }; } }