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
27
node_modules/@mui/x-date-pickers/internals/models/props/basePickerProps.d.ts
generated
vendored
Normal file
27
node_modules/@mui/x-date-pickers/internals/models/props/basePickerProps.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
import { Theme } from '@mui/material/styles';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { MakeOptional } from '@mui/x-internals/types';
|
||||
import { UsePickerBaseProps } from "../../hooks/usePicker/index.js";
|
||||
import { PickersInputComponentLocaleText } from "../../../locales/utils/pickersLocaleTextApi.js";
|
||||
import type { UsePickerProps } from "../../hooks/usePicker/index.js";
|
||||
import { DateOrTimeViewWithMeridiem } from "../common.js";
|
||||
import { PickerValidValue } from "../value.js";
|
||||
/**
|
||||
* Props common to all pickers after applying the default props on each Picker.
|
||||
*/
|
||||
export interface BasePickerProps<TValue extends PickerValidValue, TView extends DateOrTimeViewWithMeridiem, TError, TExternalProps extends UsePickerProps<TValue, TView, TError, any>> extends UsePickerBaseProps<TValue, TView, TError, TExternalProps> {
|
||||
className?: string;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
/**
|
||||
* Locale for components texts.
|
||||
* Allows overriding texts coming from `LocalizationProvider` and `theme`.
|
||||
*/
|
||||
localeText?: PickersInputComponentLocaleText;
|
||||
}
|
||||
/**
|
||||
* Props common to all pickers before applying the default props on each Picker.
|
||||
*/
|
||||
export interface BasePickerInputProps<TValue extends PickerValidValue, TView extends DateOrTimeViewWithMeridiem, TError> extends Omit<MakeOptional<BasePickerProps<TValue, TView, TError, any>, 'openTo' | 'views'>, 'viewRenderers'> {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue