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
15
node_modules/@mui/x-date-pickers/internals/components/PickersToolbarButton.d.ts
generated
vendored
Normal file
15
node_modules/@mui/x-date-pickers/internals/components/PickersToolbarButton.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import * as React from 'react';
|
||||
import { ButtonProps } from '@mui/material/Button';
|
||||
import { TypographyProps } from '@mui/material/Typography';
|
||||
import { ExtendMui } from "../models/helpers.js";
|
||||
import { PickersToolbarButtonClasses } from "./pickersToolbarButtonClasses.js";
|
||||
export interface PickersToolbarButtonProps extends ExtendMui<ButtonProps, 'value' | 'variant'> {
|
||||
align?: TypographyProps['align'];
|
||||
selected: boolean;
|
||||
typographyClassName?: string;
|
||||
value: React.ReactNode;
|
||||
variant: TypographyProps['variant'];
|
||||
classes?: Partial<PickersToolbarButtonClasses>;
|
||||
width?: number | string;
|
||||
}
|
||||
export declare const PickersToolbarButton: React.ForwardRefExoticComponent<Omit<PickersToolbarButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue