@still-forest/canopy 0.45.0 → 0.45.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.
- package/dist/index.d.ts +3 -1
- package/dist/index.js +390 -361
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -758,7 +758,7 @@ export declare interface SelectInputProps extends Omit<ComponentProps<"select">,
|
|
|
758
758
|
size?: "xs" | "sm" | "md" | "lg" | "xl";
|
|
759
759
|
}
|
|
760
760
|
|
|
761
|
-
export declare const SelectPicker: ({ options, value, placeholder, onChange, label, name, labelClassName, hint, note, error, renderSelected, }: SelectPickerProps) => JSX.Element;
|
|
761
|
+
export declare const SelectPicker: ({ options, value, placeholder, onChange, label, name, labelClassName, triggerClassName, hint, note, error, renderSelected, }: SelectPickerProps) => JSX.Element;
|
|
762
762
|
|
|
763
763
|
export declare interface SelectPickerOption {
|
|
764
764
|
icon?: string;
|
|
@@ -781,11 +781,13 @@ export declare interface SelectPickerProps {
|
|
|
781
781
|
options: SelectPickerOption[] | SelectPickerOptionGroup[];
|
|
782
782
|
label?: string;
|
|
783
783
|
labelClassName?: string;
|
|
784
|
+
triggerClassName?: string;
|
|
784
785
|
placeholder?: string;
|
|
785
786
|
hint?: string;
|
|
786
787
|
note?: string;
|
|
787
788
|
error?: string;
|
|
788
789
|
renderSelected?: (selected: SelectPickerOption) => React.ReactNode;
|
|
790
|
+
className?: string;
|
|
789
791
|
}
|
|
790
792
|
|
|
791
793
|
export declare const Separator: ({ className, orientation, gap, ...props }: SeparatorProps) => JSX.Element;
|