29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
|
|
/**
|
||
|
|
* @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 {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';
|
||
|
|
import {MatDatepickerBase, MatDatepickerControl} from './datepicker-base';
|
||
|
|
import {MAT_SINGLE_DATE_SELECTION_MODEL_PROVIDER} from './date-selection-model';
|
||
|
|
|
||
|
|
// TODO(mmalerba): We use a component instead of a directive here so the user can use implicit
|
||
|
|
// template reference variables (e.g. #d vs #d="matDatepicker"). We can change this to a directive
|
||
|
|
// if angular adds support for `exportAs: '$implicit'` on directives.
|
||
|
|
/** Component responsible for managing the datepicker popup/dialog. */
|
||
|
|
@Component({
|
||
|
|
selector: 'mat-datepicker',
|
||
|
|
template: '',
|
||
|
|
exportAs: 'matDatepicker',
|
||
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||
|
|
encapsulation: ViewEncapsulation.None,
|
||
|
|
providers: [
|
||
|
|
MAT_SINGLE_DATE_SELECTION_MODEL_PROVIDER,
|
||
|
|
{provide: MatDatepickerBase, useExisting: MatDatepicker},
|
||
|
|
],
|
||
|
|
})
|
||
|
|
export class MatDatepicker<D> extends MatDatepickerBase<MatDatepickerControl<D>, D | null, D> {}
|