ingeniuscliq-core 0.3.16 → 0.3.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,11 @@
1
1
  import { BaseStyleProps } from '../../../types/ui/main';
2
- import { Checkbox } from '@radix-ui/react-checkbox';
3
2
  import { Control, FieldValues, Path } from 'react-hook-form';
3
+ import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
4
4
  interface FormCheckboxProps<T extends FieldValues = FieldValues> extends BaseStyleProps {
5
5
  readonly control: Control<T>;
6
6
  readonly name: Path<T>;
7
7
  readonly placeholder?: string;
8
- readonly checkboxProps?: React.ComponentProps<typeof Checkbox>;
8
+ readonly checkboxProps?: React.ComponentProps<typeof CheckboxPrimitive.Root>;
9
9
  }
10
10
  export declare function FormCheckbox<T extends FieldValues = FieldValues>({ control, name, placeholder, className, checkboxProps }: FormCheckboxProps<T>): import("react/jsx-runtime").JSX.Element;
11
11
  export {};