@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
16 lines (15 loc) • 1.51 kB
TypeScript
export type { CheckedChangeDetails as CheckboxCheckedChangeDetails, CheckedState as CheckboxCheckedState, } from '@zag-js/checkbox';
export { CheckboxContext, type CheckboxContextProps } from './checkbox-context';
export { CheckboxControl, type CheckboxControlBaseProps, type CheckboxControlProps } from './checkbox-control';
export { CheckboxGroup, type CheckboxGroupBaseProps, type CheckboxGroupProps } from './checkbox-group';
export { CheckboxHiddenInput, type CheckboxHiddenInputBaseProps, type CheckboxHiddenInputProps, } from './checkbox-hidden-input';
export { CheckboxIndicator, type CheckboxIndicatorBaseProps, type CheckboxIndicatorProps } from './checkbox-indicator';
export { CheckboxLabel, type CheckboxLabelBaseProps, type CheckboxLabelProps } from './checkbox-label';
export { CheckboxRoot, type CheckboxRootBaseProps, type CheckboxRootProps } from './checkbox-root';
export { CheckboxRootProvider, type CheckboxRootProviderBaseProps, type CheckboxRootProviderProps, } from './checkbox-root-provider';
export { checkboxAnatomy } from './checkbox.anatomy';
export { useCheckbox, type UseCheckboxProps, type UseCheckboxReturn } from './use-checkbox';
export { useCheckboxContext, type UseCheckboxContext } from './use-checkbox-context';
export { useCheckboxGroup, type UseCheckboxGroupProps, type UseCheckboxGroupReturn } from './use-checkbox-group';
export { useCheckboxGroupContext, type UseCheckboxGroupContext } from './use-checkbox-group-context';
export * as Checkbox from './checkbox';