Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | import { AfterViewInit, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
|
---|
9 | import { MatDatepickerBase, MatDatepickerControl } from './datepicker-base';
|
---|
10 | /** Button that will close the datepicker and assign the current selection to the data model. */
|
---|
11 | export declare class MatDatepickerApply {
|
---|
12 | private _datepicker;
|
---|
13 | constructor(_datepicker: MatDatepickerBase<MatDatepickerControl<unknown>, unknown>);
|
---|
14 | _applySelection(): void;
|
---|
15 | }
|
---|
16 | /** Button that will close the datepicker and discard the current selection. */
|
---|
17 | export declare class MatDatepickerCancel {
|
---|
18 | _datepicker: MatDatepickerBase<MatDatepickerControl<unknown>, unknown>;
|
---|
19 | constructor(_datepicker: MatDatepickerBase<MatDatepickerControl<unknown>, unknown>);
|
---|
20 | }
|
---|
21 | /**
|
---|
22 | * Container that can be used to project a row of action buttons
|
---|
23 | * to the bottom of a datepicker or date range picker.
|
---|
24 | */
|
---|
25 | export declare class MatDatepickerActions implements AfterViewInit, OnDestroy {
|
---|
26 | private _datepicker;
|
---|
27 | private _viewContainerRef;
|
---|
28 | _template: TemplateRef<unknown>;
|
---|
29 | private _portal;
|
---|
30 | constructor(_datepicker: MatDatepickerBase<MatDatepickerControl<unknown>, unknown>, _viewContainerRef: ViewContainerRef);
|
---|
31 | ngAfterViewInit(): void;
|
---|
32 | ngOnDestroy(): void;
|
---|
33 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.