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
18
node_modules/@mui/x-date-pickers/validation/validateTime.d.ts
generated
vendored
Normal file
18
node_modules/@mui/x-date-pickers/validation/validateTime.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import type { MakeRequired } from '@mui/x-internals/types';
|
||||
import { Validator } from "./useValidation.js";
|
||||
import { BaseTimeValidationProps, TimeValidationProps } from "../internals/models/validation.js";
|
||||
import { TimeValidationError } from "../models/index.js";
|
||||
import { PickerValue } from "../internals/models/index.js";
|
||||
/**
|
||||
* Validation props used by the Time Picker, Time Field and Clock components.
|
||||
*/
|
||||
export interface ExportedValidateTimeProps extends BaseTimeValidationProps, TimeValidationProps {}
|
||||
/**
|
||||
* Validation props as received by the validateTime method.
|
||||
*/
|
||||
export interface ValidateTimeProps extends MakeRequired<ExportedValidateTimeProps, ValidateTimePropsToDefault> {}
|
||||
/**
|
||||
* Name of the props that should be defaulted before being passed to the validateTime method.
|
||||
*/
|
||||
export type ValidateTimePropsToDefault = keyof BaseTimeValidationProps;
|
||||
export declare const validateTime: Validator<PickerValue, TimeValidationError, ValidateTimeProps>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue