@@ -200,8 +200,10 @@ export class MatCalendar<D> implements AfterContentInit, AfterViewChecked, OnDes
200200export class MatCalendarBody implements OnChanges , OnDestroy {
201201 constructor (_elementRef : ElementRef <HTMLElement >, _ngZone : NgZone );
202202 activeCell: number ;
203+ readonly activeValueChange: EventEmitter <MatCalendarUserEvent <number >>;
203204 cellAspectRatio: number ;
204205 _cellClicked(cell : MatCalendarCell , event : MouseEvent ): void ;
206+ _cellFocused(cell : MatCalendarCell , event : FocusEvent ): void ;
205207 _cellPadding: string ;
206208 _cellWidth: string ;
207209 comparisonEnd: number | null ;
@@ -239,7 +241,7 @@ export class MatCalendarBody implements OnChanges, OnDestroy {
239241 startValue: number ;
240242 todayValue: number ;
241243 // (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 >;
243245 // (undocumented)
244246 static ɵfac: i0 .ɵɵFactoryDeclaration <MatCalendarBody , never >;
245247}
@@ -759,6 +761,8 @@ export class MatMonthView<D> implements AfterContentInit, OnChanges, OnDestroy {
759761 comparisonStart: D | null ;
760762 // (undocumented)
761763 _dateAdapter: DateAdapter <D >;
764+ // (undocumented)
765+ _dateBecomesActive(event : MatCalendarUserEvent <number >): void ;
762766 dateClass: MatCalendarCellClassFunction <D >;
763767 dateFilter: (date : D ) => boolean ;
764768 _dateSelected(event : MatCalendarUserEvent <number >): void ;
@@ -831,6 +835,8 @@ export class MatMultiYearView<D> implements AfterContentInit, OnDestroy {
831835 readonly selectedChange: EventEmitter <D >;
832836 _selectedYear: number | null ;
833837 _todayYear: number ;
838+ // (undocumented)
839+ _yearBecomesActive(event : MatCalendarUserEvent <number >): void ;
834840 _years: MatCalendarCell [][];
835841 readonly yearSelected: EventEmitter <D >;
836842 _yearSelected(event : MatCalendarUserEvent <number >): void ;
@@ -907,6 +913,7 @@ export class MatYearView<D> implements AfterContentInit, OnDestroy {
907913 set maxDate(value : D | null );
908914 get minDate(): D | null ;
909915 set minDate(value : D | null );
916+ _monthBecomesActive(event : MatCalendarUserEvent <number >): void ;
910917 _months: MatCalendarCell [][];
911918 readonly monthSelected: EventEmitter <D >;
912919 _monthSelected(event : MatCalendarUserEvent <number >): void ;
0 commit comments