@still-forest/canopy 0.51.0 → 0.51.1

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +5 -2
  2. package/dist/index.js +5135 -4963
  3. package/package.json +23 -23
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
2
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
2
3
  import { ClassProp } from 'class-variance-authority/types';
3
4
  import { ClassValue } from 'clsx';
4
5
  import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
@@ -219,9 +220,11 @@ declare function CardTitle({ className, ...props }: React_2.ComponentProps<"div"
219
220
 
220
221
  declare type CardTitleProps = React.ComponentProps<typeof CardTitle>;
221
222
 
222
- export declare const Checkbox: ({ label, name, value, checked, onCheckedChange, note, error, labelClassName, hint, }: CheckboxProps) => JSX.Element;
223
+ export declare const Checkbox: ({ label, name, value, checked, onCheckedChange, note, error, labelClassName, hint, ...props }: CheckboxProps) => JSX.Element;
223
224
 
224
- export declare interface CheckboxProps {
225
+ declare function Checkbox_2({ className, ...props }: React_2.ComponentProps<typeof CheckboxPrimitive.Root>): JSX.Element;
226
+
227
+ export declare interface CheckboxProps extends React.ComponentProps<typeof Checkbox_2> {
225
228
  label: string;
226
229
  labelClassName?: string;
227
230
  name: string;