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
37
node_modules/@mui/x-date-pickers/TimeClock/ClockNumber.d.ts
generated
vendored
Normal file
37
node_modules/@mui/x-date-pickers/TimeClock/ClockNumber.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
import * as React from 'react';
|
||||
import { ClockNumberClasses } from "./clockNumberClasses.js";
|
||||
import { PickerOwnerState } from "../models/pickers.js";
|
||||
export interface ClockNumberProps extends React.HTMLAttributes<HTMLSpanElement> {
|
||||
'aria-label': string;
|
||||
disabled: boolean;
|
||||
/**
|
||||
* Make sure callers pass an id which. It should be defined if selected.
|
||||
*/
|
||||
id: string | undefined;
|
||||
index: number;
|
||||
inner: boolean;
|
||||
label: string;
|
||||
selected: boolean;
|
||||
classes?: Partial<ClockNumberClasses>;
|
||||
}
|
||||
export interface ClockNumberOwnerState extends PickerOwnerState {
|
||||
/**
|
||||
* `true` if the clock number is in the inner clock ring.
|
||||
* When used with meridiem, all the hours are in the outer ring.
|
||||
* When used without meridiem, the hours from 1 to 12 are in the outer ring and the hours from 13 to 24 are in the inner ring.
|
||||
* The minutes are always in the outer ring.
|
||||
*/
|
||||
isClockNumberInInnerRing: boolean;
|
||||
/**
|
||||
* `true` if the clock number is selected.
|
||||
*/
|
||||
isClockNumberSelected: boolean;
|
||||
/**
|
||||
* `true` if the clock number is disabled.
|
||||
*/
|
||||
isClockNumberDisabled: boolean;
|
||||
}
|
||||
/**
|
||||
* @ignore - internal component.
|
||||
*/
|
||||
export declare function ClockNumber(inProps: ClockNumberProps): React.JSX.Element;
|
||||
Loading…
Add table
Add a link
Reference in a new issue