-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathindex.ts
More file actions
53 lines (46 loc) · 1.25 KB
/
index.ts
File metadata and controls
53 lines (46 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* @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.dev/license
*/
import {NgModule, Provider} from '@angular/core';
import {DateAdapter, MAT_DATE_FORMATS, MatDateFormats} from '@angular/material/core';
import {
LuxonDateAdapter,
MAT_LUXON_DATE_ADAPTER_OPTIONS,
MatLuxonDateAdapterOptions,
} from './luxon-date-adapter';
import {MAT_LUXON_DATE_FORMATS} from './luxon-date-formats';
export * from './luxon-date-adapter';
export * from './luxon-date-formats';
@NgModule({
providers: [
{
provide: DateAdapter,
useClass: LuxonDateAdapter,
},
],
})
export class LuxonDateModule {}
@NgModule({
providers: [provideLuxonDateAdapter()],
})
export class MatLuxonDateModule {}
export function provideLuxonDateAdapter(
formats: MatDateFormats = MAT_LUXON_DATE_FORMATS,
options?: MatLuxonDateAdapterOptions,
): Provider[] {
const providers: Provider[] = [
{
provide: DateAdapter,
useClass: LuxonDateAdapter,
},
{provide: MAT_DATE_FORMATS, useValue: formats},
];
if (options) {
providers.push({provide: MAT_LUXON_DATE_ADAPTER_OPTIONS, useValue: options});
}
return providers;
}