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