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,29 @@
import * as React from 'react';
import { DialogActionsProps } from '@mui/material/DialogActions';
export type PickersActionBarAction = 'clear' | 'cancel' | 'accept' | 'today' | 'next' | 'nextOrAccept';
export interface PickersActionBarProps extends DialogActionsProps {
/**
* Ordered array of actions to display.
* If empty, does not display that action bar.
* @default
* - `[]` for Pickers with one selection step which `closeOnSelect`.
* - `['cancel', 'nextOrAccept']` for all other Pickers.
*/
actions?: PickersActionBarAction[];
}
/**
* Demos:
*
* - [Custom slots and subcomponents](https://mui.com/x/react-date-pickers/custom-components/)
* - [Custom layout](https://mui.com/x/react-date-pickers/custom-layout/)
*
* API:
*
* - [PickersActionBar API](https://mui.com/x/api/date-pickers/pickers-action-bar/)
*/
declare function PickersActionBarComponent(props: PickersActionBarProps): React.JSX.Element | null;
declare namespace PickersActionBarComponent {
var propTypes: any;
}
declare const PickersActionBar: React.MemoExoticComponent<typeof PickersActionBarComponent>;
export { PickersActionBar };