@still-forest/canopy 0.60.1 → 0.60.2

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 -2
  2. package/dist/index.js +13445 -10548
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1046,8 +1046,9 @@ export declare interface SubmitButtonProps extends Omit<ButtonProps, "type"> {
1046
1046
  submitting: boolean;
1047
1047
  }
1048
1048
 
1049
- declare function Switch({ className, size, ...props }: Switch_2.Root.Props & {
1049
+ declare function Switch({ className, size, thumbClassName, ...props }: Switch_2.Root.Props & {
1050
1050
  size?: "xs" | "sm" | "md" | "lg" | "xl";
1051
+ thumbClassName?: string;
1051
1052
  }): JSX.Element;
1052
1053
 
1053
1054
  export declare const Table: {
@@ -1169,13 +1170,14 @@ export declare type TextTracking = (typeof TEXT_TRACKINGS)[number];
1169
1170
 
1170
1171
  export declare type Theme = "system" | "light" | "dark";
1171
1172
 
1172
- export declare const ToggleField: ({ id: idProp, label, className, labelClassName, size, ...props }: ToggleFieldProps) => JSX.Element;
1173
+ export declare const ToggleField: ({ id: idProp, label, labelClassName, containerClassName, size, ...props }: ToggleFieldProps) => JSX.Element;
1173
1174
 
1174
1175
  declare interface ToggleFieldProps extends React.ComponentProps<typeof Switch> {
1175
1176
  id?: string;
1176
1177
  label?: string | (string | null)[];
1177
1178
  size?: "xs" | "sm" | "md" | "lg" | "xl";
1178
1179
  labelClassName?: string | string[];
1180
+ containerClassName?: string;
1179
1181
  }
1180
1182
 
1181
1183
  export declare const Tooltip: TooltipComponent;