1
0
Fork 0

Added Statistics calculation

Statistics now show calculated values
This commit is contained in:
Techognito 2025-09-04 17:30:00 +02:00
parent fe87374e47
commit fc0f69dacb
2147 changed files with 141321 additions and 39 deletions

View file

@ -0,0 +1,16 @@
import { PickerManager } from "../../../models/index.js";
import { PickerValidValue } from "../../models/index.js";
import { UseFieldStateReturnValue } from "./useFieldState.js";
import { UseFieldInternalProps } from "./useField.types.js";
/**
* Returns the `onKeyDown` handler to pass to the root element of the field.
*/
export declare function useFieldRootHandleKeyDown<TValue extends PickerValidValue>(parameters: UseFieldRootHandleKeyDownParameters<TValue>): (event: React.KeyboardEvent<HTMLSpanElement>) => void;
interface UseFieldRootHandleKeyDownParameters<TValue extends PickerValidValue> {
manager: PickerManager<TValue, any, any, any, any>;
stateResponse: UseFieldStateReturnValue<TValue>;
internalPropsWithDefaults: UseFieldInternalProps<TValue, any, any> & {
minutesStep?: number;
};
}
export {};