@still-forest/canopy 0.51.2 → 0.52.0

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 +4 -1
  2. package/dist/index.js +5138 -4954
  3. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -767,15 +767,18 @@ declare interface Props_5 extends SidebarProps {
767
767
  children?: React.ReactNode;
768
768
  }
769
769
 
770
- export declare const RadioSelect: ({ label, name, options, value, onChange, error, labelClassName }: RadioSelectProps) => JSX.Element;
770
+ export declare const RadioSelect: ({ cols, gap, label, name, options, value, size, onChange, error, labelClassName, }: RadioSelectProps) => JSX.Element;
771
771
 
772
772
  declare interface RadioSelectProps {
773
+ cols?: GridCols;
774
+ gap?: Gap;
773
775
  name: string;
774
776
  label?: string;
775
777
  labelClassName?: string;
776
778
  value?: string;
777
779
  options: Option_3[];
778
780
  onChange?: (value: string) => void;
781
+ size?: "sm" | "md" | "lg";
779
782
  error?: string;
780
783
  }
781
784