@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
17 lines (16 loc) • 880 B
TypeScript
import { ChangeEventHandler, FocusEventHandler } from "../utils/types.js";
import { ThemingProps } from "../theme/types.js";
import { SystemProps } from "../system/system.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