@angular/material/datepicker#MatCalendarCellCssClasses TypeScript Examples
The following examples show how to use
@angular/material/datepicker#MatCalendarCellCssClasses.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: calendar.ts From angular-material-components with MIT License | 5 votes |
/** Function that can be used to add custom CSS classes to dates. */
@Input() dateClass: (date: D) => MatCalendarCellCssClasses;
Example #2
Source File: datetime-picker.component.ts From angular-material-components with MIT License | 5 votes |
/** Function that can be used to add custom CSS classes to dates. */
@Input() dateClass: (date: D) => MatCalendarCellCssClasses;
Example #3
Source File: month-view.ts From angular-material-components with MIT License | 5 votes |
/** Function that can be used to add custom CSS classes to dates. */
@Input() dateClass: (date: D) => MatCalendarCellCssClasses;
Example #4
Source File: calendar.ts From ngx-mat-datetime-picker with MIT License | 5 votes |
/** Function that can be used to add custom CSS classes to dates. */
@Input() dateClass: (date: D) => MatCalendarCellCssClasses;
Example #5
Source File: datetime-picker.component.ts From ngx-mat-datetime-picker with MIT License | 5 votes |
/** Function that can be used to add custom CSS classes to dates. */
@Input() dateClass: (date: D) => MatCalendarCellCssClasses;
Example #6
Source File: month-view.ts From ngx-mat-datetime-picker with MIT License | 5 votes |
/** Function that can be used to add custom CSS classes to dates. */
@Input() dateClass: (date: D) => MatCalendarCellCssClasses;