@ngx-mce/datetime-picker 21.2.5 → 21.2.6-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -15,9 +15,7 @@ import { MatCalendarView, MatCalendar } from '@angular/material/datepicker';
|
|
|
15
15
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
16
16
|
|
|
17
17
|
/** Extra CSS classes that can be associated with a calendar cell. */
|
|
18
|
-
type NgxMatCalendarCellCssClasses = string | string[] | Set<string> |
|
|
19
|
-
[key: string]: any;
|
|
20
|
-
};
|
|
18
|
+
type NgxMatCalendarCellCssClasses = string | string[] | Set<string> | Record<string, any>;
|
|
21
19
|
/** Function that can generate the extra classes that should be added to a calendar cell. */
|
|
22
20
|
type NgxMatCalendarCellClassFunction<D> = (date: D, view: 'month' | 'year' | 'multi-year') => NgxMatCalendarCellCssClasses;
|
|
23
21
|
/**
|