@@ -200,8 +200,10 @@ export class MatCalendar<D> implements AfterContentInit, AfterViewChecked, OnDes
200
200
export class MatCalendarBody implements OnChanges , OnDestroy {
201
201
constructor (_elementRef : ElementRef <HTMLElement >, _ngZone : NgZone );
202
202
activeCell: number ;
203
+ readonly activeValueChange: EventEmitter <MatCalendarUserEvent <number >>;
203
204
cellAspectRatio: number ;
204
205
_cellClicked(cell : MatCalendarCell , event : MouseEvent ): void ;
206
+ _cellFocused(cell : MatCalendarCell , event : FocusEvent ): void ;
205
207
_cellPadding: string ;
206
208
_cellWidth: string ;
207
209
comparisonEnd: number | null ;
@@ -239,7 +241,7 @@ export class MatCalendarBody implements OnChanges, OnDestroy {
239
241
startValue: number ;
240
242
todayValue: number ;
241
243
// (undocumented)
242
- static ɵcmp: i0 .ɵɵComponentDeclaration <MatCalendarBody , " [mat-calendar-body]" , [" matCalendarBody" ], { " label" : " label" ; " rows" : " rows" ; " todayValue" : " todayValue" ; " startValue" : " startValue" ; " endValue" : " endValue" ; " labelMinRequiredCells" : " labelMinRequiredCells" ; " numCols" : " numCols" ; " activeCell" : " activeCell" ; " isRange" : " isRange" ; " cellAspectRatio" : " cellAspectRatio" ; " comparisonStart" : " comparisonStart" ; " comparisonEnd" : " comparisonEnd" ; " previewStart" : " previewStart" ; " previewEnd" : " previewEnd" ; }, { " selectedValueChange" : " selectedValueChange" ; " previewChange" : " previewChange" ; }, never , never >;
244
+ static ɵcmp: i0 .ɵɵComponentDeclaration <MatCalendarBody , " [mat-calendar-body]" , [" matCalendarBody" ], { " label" : " label" ; " rows" : " rows" ; " todayValue" : " todayValue" ; " startValue" : " startValue" ; " endValue" : " endValue" ; " labelMinRequiredCells" : " labelMinRequiredCells" ; " numCols" : " numCols" ; " activeCell" : " activeCell" ; " isRange" : " isRange" ; " cellAspectRatio" : " cellAspectRatio" ; " comparisonStart" : " comparisonStart" ; " comparisonEnd" : " comparisonEnd" ; " previewStart" : " previewStart" ; " previewEnd" : " previewEnd" ; }, { " selectedValueChange" : " selectedValueChange" ; " activeValueChange " : " activeValueChange " ; " previewChange" : " previewChange" ; }, never , never >;
243
245
// (undocumented)
244
246
static ɵfac: i0 .ɵɵFactoryDeclaration <MatCalendarBody , never >;
245
247
}
@@ -759,6 +761,8 @@ export class MatMonthView<D> implements AfterContentInit, OnChanges, OnDestroy {
759
761
comparisonStart: D | null ;
760
762
// (undocumented)
761
763
_dateAdapter: DateAdapter <D >;
764
+ // (undocumented)
765
+ _dateBecomesActive(event : MatCalendarUserEvent <number >): void ;
762
766
dateClass: MatCalendarCellClassFunction <D >;
763
767
dateFilter: (date : D ) => boolean ;
764
768
_dateSelected(event : MatCalendarUserEvent <number >): void ;
@@ -831,6 +835,8 @@ export class MatMultiYearView<D> implements AfterContentInit, OnDestroy {
831
835
readonly selectedChange: EventEmitter <D >;
832
836
_selectedYear: number | null ;
833
837
_todayYear: number ;
838
+ // (undocumented)
839
+ _yearBecomesActive(event : MatCalendarUserEvent <number >): void ;
834
840
_years: MatCalendarCell [][];
835
841
readonly yearSelected: EventEmitter <D >;
836
842
_yearSelected(event : MatCalendarUserEvent <number >): void ;
@@ -907,6 +913,7 @@ export class MatYearView<D> implements AfterContentInit, OnDestroy {
907
913
set maxDate(value : D | null );
908
914
get minDate(): D | null ;
909
915
set minDate(value : D | null );
916
+ _monthBecomesActive(event : MatCalendarUserEvent <number >): void ;
910
917
_months: MatCalendarCell [][];
911
918
readonly monthSelected: EventEmitter <D >;
912
919
_monthSelected(event : MatCalendarUserEvent <number >): void ;
0 commit comments