@@ -74,7 +74,7 @@ import {
74
74
MatDateRangeSelectionStrategy ,
75
75
} from './date-range-selection-strategy' ;
76
76
import { MatDatepickerIntl } from './datepicker-intl' ;
77
- import { DOCUMENT , NgClass } from '@angular/common' ;
77
+ import { DOCUMENT } from '@angular/common' ;
78
78
import { MatButton } from '@angular/material/button' ;
79
79
import { CdkTrapFocus } from '@angular/cdk/a11y' ;
80
80
@@ -135,7 +135,7 @@ export const MAT_DATEPICKER_SCROLL_STRATEGY_FACTORY_PROVIDER = {
135
135
encapsulation : ViewEncapsulation . None ,
136
136
changeDetection : ChangeDetectionStrategy . OnPush ,
137
137
standalone : true ,
138
- imports : [ CdkTrapFocus , MatCalendar , NgClass , CdkPortalOutlet , MatButton ] ,
138
+ imports : [ CdkTrapFocus , MatCalendar , CdkPortalOutlet , MatButton ] ,
139
139
} )
140
140
export class MatDatepickerContent < S , D = ExtractDateTypeFromSelection < S > >
141
141
implements OnInit , AfterViewInit , OnDestroy
@@ -446,10 +446,7 @@ export abstract class MatDatepickerBase<
446
446
/** Emits when the datepicker has been closed. */
447
447
@Output ( 'closed' ) readonly closedStream = new EventEmitter < void > ( ) ;
448
448
449
- /**
450
- * Classes to be passed to the date picker panel.
451
- * Supports string and string array values, similar to `ngClass`.
452
- */
449
+ /** Classes to be passed to the date picker panel. */
453
450
@Input ( )
454
451
get panelClass ( ) : string | string [ ] {
455
452
return this . _panelClass ;
0 commit comments