Added Statistics calculation
Statistics now show calculated values
This commit is contained in:
parent
fe87374e47
commit
fc0f69dacb
2147 changed files with 141321 additions and 39 deletions
30
node_modules/@mui/x-date-pickers/DayCalendarSkeleton/DayCalendarSkeleton.d.ts
generated
vendored
Normal file
30
node_modules/@mui/x-date-pickers/DayCalendarSkeleton/DayCalendarSkeleton.d.ts
generated
vendored
Normal 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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue