UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

31 lines 1.72 kB
import * as React from 'react'; export interface DataListCheckProps extends Omit<React.HTMLProps<HTMLInputElement>, 'onChange' | 'checked'> { /** Additional classes added to the DataList item checkbox */ className?: string; /** Flag to show if the DataList checkbox selection is valid or invalid */ isValid?: boolean; /** Flag to show if the DataList checkbox is disabled */ isDisabled?: boolean; /** Flag to show if the DataList checkbox is checked when it is controlled by React state. Both isChecked and checked are valid, * but only use one. * To make the DataList checkbox uncontrolled, instead use the defaultChecked prop, but do not use both. */ isChecked?: boolean; /** Flag to show if the DataList checkbox is checked when it is controlled by React state. Both isChecked and checked are valid, * but only use one. * To make the DataList checkbox uncontrolled, instead use the defaultChecked prop, but do not use both. */ checked?: boolean; /** Flag to set default value of DataList checkbox when it is uncontrolled by React state. * To make the DataList checkbox controlled, instead use the isChecked prop, but do not use both. */ defaultChecked?: boolean; /** A callback for when the DataList checkbox selection changes */ onChange?: (checked: boolean, event: React.FormEvent<HTMLInputElement>) => void; /** Aria-labelledby of the DataList checkbox */ 'aria-labelledby': string; /** Flag to indicate if other controls are used in the DataListItem */ otherControls?: boolean; } export declare const DataListCheck: React.FunctionComponent<DataListCheckProps>; //# sourceMappingURL=DataListCheck.d.ts.map