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
24
node_modules/@mui/x-date-pickers/internals/hooks/date-helpers-hooks.d.ts
generated
vendored
Normal file
24
node_modules/@mui/x-date-pickers/internals/hooks/date-helpers-hooks.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import { PickerOnChangeFn } from "./useViews.js";
|
||||
import { PickerSelectionState } from "./usePicker/index.js";
|
||||
import { PickersTimezone, PickerValidDate } from "../../models/index.js";
|
||||
export interface MonthValidationOptions {
|
||||
disablePast?: boolean;
|
||||
disableFuture?: boolean;
|
||||
minDate: PickerValidDate;
|
||||
maxDate: PickerValidDate;
|
||||
timezone: PickersTimezone;
|
||||
}
|
||||
export declare function useNextMonthDisabled(month: PickerValidDate, {
|
||||
disableFuture,
|
||||
maxDate,
|
||||
timezone
|
||||
}: Pick<MonthValidationOptions, 'disableFuture' | 'maxDate' | 'timezone'>): boolean;
|
||||
export declare function usePreviousMonthDisabled(month: PickerValidDate, {
|
||||
disablePast,
|
||||
minDate,
|
||||
timezone
|
||||
}: Pick<MonthValidationOptions, 'disablePast' | 'minDate' | 'timezone'>): boolean;
|
||||
export declare function useMeridiemMode(date: PickerValidDate | null, ampm: boolean | undefined, onChange: PickerOnChangeFn, selectionState?: PickerSelectionState): {
|
||||
meridiemMode: import("../utils/time-utils.js").Meridiem | null;
|
||||
handleMeridiemChange: (mode: "am" | "pm") => void;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue