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
29
node_modules/@mui/x-date-pickers/esm/PickersActionBar/PickersActionBar.d.ts
generated
vendored
Normal file
29
node_modules/@mui/x-date-pickers/esm/PickersActionBar/PickersActionBar.d.ts
generated
vendored
Normal 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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue