UNPKG

ipsos-components

Version:

Material Design components for Angular

35 lines (28 loc) 978 B
/** * @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 {NgModule} from '@angular/core'; import {DateAdapter, MAT_DATE_LOCALE_PROVIDER} from './date-adapter'; import {MAT_DATE_FORMATS} from './date-formats'; import {NativeDateAdapter} from './native-date-adapter'; import {MAT_NATIVE_DATE_FORMATS} from './native-date-formats'; export * from './date-adapter'; export * from './date-formats'; export * from './native-date-adapter'; export * from './native-date-formats'; @NgModule({ providers: [ {provide: DateAdapter, useClass: NativeDateAdapter}, MAT_DATE_LOCALE_PROVIDER ], }) export class NativeDateModule {} @NgModule({ imports: [NativeDateModule], providers: [{provide: MAT_DATE_FORMATS, useValue: MAT_NATIVE_DATE_FORMATS}], }) export class MatNativeDateModule {}