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
17
node_modules/@mui/x-date-pickers/esm/internals/models/helpers.d.ts
generated
vendored
Normal file
17
node_modules/@mui/x-date-pickers/esm/internals/models/helpers.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { ComponentNameToClassKey, ComponentsPropsList } from '@mui/material/styles';
|
||||
import { CSSObject, CSSInterpolation, Interpolation } from '@mui/system';
|
||||
/**
|
||||
* All standard components exposed by `material-ui` are `StyledComponents` with
|
||||
* certain `classes`, on which one can also set a top-level `className` and inline
|
||||
* `style`.
|
||||
*/
|
||||
export type ExtendMui<C, Removals extends keyof C = never> = Omit<C, 'classes' | 'theme' | Removals>;
|
||||
type OverridesStyleRules<ClassKey extends string = string, ComponentName = keyof ComponentsPropsList, Theme = unknown, OwnerState = unknown> = Record<ClassKey, Interpolation<(ComponentName extends keyof ComponentsPropsList ? ComponentsPropsList[ComponentName] & Record<string, unknown> & {
|
||||
ownerState: OwnerState extends object ? OwnerState : ComponentsPropsList[ComponentName] & Record<string, unknown>;
|
||||
} : {}) & {
|
||||
theme: Theme;
|
||||
} & Record<string, unknown>>>;
|
||||
export type ComponentsOverrides<Theme = unknown, OwnerState = unknown> = { [Name in keyof ComponentNameToClassKey]?: Partial<OverridesStyleRules<ComponentNameToClassKey[Name], Name, Theme, OwnerState>> } & {
|
||||
MuiCssBaseline?: CSSObject | string | ((theme: Theme) => CSSInterpolation);
|
||||
};
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue