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
16
node_modules/@mui/x-date-pickers/hooks/useParsedFormat.d.ts
generated
vendored
Normal file
16
node_modules/@mui/x-date-pickers/hooks/useParsedFormat.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
interface UseParsedFormatParameters {
|
||||
/**
|
||||
* Format to parse.
|
||||
* @default the format provided by the Picker.
|
||||
*/
|
||||
format?: string;
|
||||
}
|
||||
/**
|
||||
* Returns the parsed format to be rendered in the field when there is no value or in other parts of the Picker.
|
||||
* This format is localized (for example `AAAA` for the year with the French locale) and cannot be parsed by your date library.
|
||||
* @param {object} The parameters needed to build the placeholder.
|
||||
* @param {string} params.format Format to parse.
|
||||
* @returns
|
||||
*/
|
||||
export declare const useParsedFormat: (parameters?: UseParsedFormatParameters) => string;
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue