1
0
Fork 0

Added Statistics calculation

Statistics now show calculated values
This commit is contained in:
Techognito 2025-09-04 17:30:00 +02:00
parent fe87374e47
commit fc0f69dacb
2147 changed files with 141321 additions and 39 deletions

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import { Theme } from '@mui/material/styles';
import { SxProps } from '@mui/system';
import { DayCalendarSkeletonClasses } from "./dayCalendarSkeletonClasses.js";
type HTMLDivProps = React.JSX.IntrinsicElements['div'];
export interface DayCalendarSkeletonProps extends HTMLDivProps {
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<DayCalendarSkeletonClasses>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
ref?: React.Ref<HTMLDivElement>;
}
/**
* Demos:
*
* - [DateCalendar](https://mui.com/x/react-date-pickers/date-calendar/)
*
* API:
*
* - [CalendarPickerSkeleton API](https://mui.com/x/api/date-pickers/calendar-picker-skeleton/)
*/
declare function DayCalendarSkeleton(inProps: DayCalendarSkeletonProps): React.JSX.Element;
declare namespace DayCalendarSkeleton {
var propTypes: any;
}
export { DayCalendarSkeleton };