UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

27 lines (26 loc) 980 B
import { ChangeEventHandler, FocusEventHandler } from "../utils/types.js"; import "../utils/index.js"; import { ThemingProps } from "../theme/types.js"; import "../theme/index.js"; import { SystemProps } from "../system/system.js"; import "../system/index.js"; //#region src/checkbox/checkboxGroup.types.d.ts type CheckboxGroupProps = SystemProps & ThemingProps<'Checkbox'> & { /** Deprecated. Please use variant instead. @deprecated */ colorScheme?: 'blue' | 'prussian'; /** Passes the prop to each checkbox. */ disabled?: boolean; /** Displays checkboxes in a row. */ isRow?: boolean; /** Passes the prop to each checkbox. */ name?: string; /** Passes the prop to each checkbox. */ onBlur?: FocusEventHandler; /** Passes the prop to each checkbox. */ onChange?: ChangeEventHandler; /** Passes the prop to each checkbox. */ onFocus?: FocusEventHandler; }; //#endregion export { CheckboxGroupProps }; //# sourceMappingURL=checkboxGroup.types.d.ts.map