1
0
Fork 0
react-playground/node_modules/@mui/x-date-pickers/esm/MonthCalendar/MonthCalendarButton.d.ts
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

24 lines
No EOL
994 B
TypeScript

import * as React from 'react';
import { MonthCalendarSlotProps, MonthCalendarSlots } from "./MonthCalendar.types.js";
import { MonthCalendarClasses } from "./monthCalendarClasses.js";
export interface MonthCalendarButtonProps {
value: number;
tabIndex: number;
selected: boolean;
disabled: boolean;
autoFocus: boolean;
classes: Partial<MonthCalendarClasses> | undefined;
slots: MonthCalendarSlots | undefined;
slotProps: MonthCalendarSlotProps | undefined;
'aria-current': React.AriaAttributes['aria-current'];
'aria-label': React.AriaAttributes['aria-label'];
children: React.ReactNode;
onClick: (event: React.MouseEvent, month: number) => void;
onKeyDown: (event: React.KeyboardEvent, month: number) => void;
onFocus: (event: React.FocusEvent, month: number) => void;
onBlur: (event: React.FocusEvent, month: number) => void;
}
/**
* @ignore - do not document.
*/
export declare const MonthCalendarButton: React.NamedExoticComponent<MonthCalendarButtonProps>;