@still-forest/canopy 0.65.4 → 0.66.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.css +2 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.js +22519 -25341
- package/dist/styles/theme.css +1 -1
- package/package.json +28 -27
package/dist/index.d.ts
CHANGED
|
@@ -369,9 +369,10 @@ declare interface DeleteButtonProps extends BaseButtonProps {
|
|
|
369
369
|
handleDelete: () => void;
|
|
370
370
|
}
|
|
371
371
|
|
|
372
|
-
export declare const DesktopSelectPicker: ({ selectedLabel, open, setOpen, children, id, triggerClassName, dropdownClassName, triggerProps, }: DesktopSelectPickerProps) => JSX.Element;
|
|
372
|
+
export declare const DesktopSelectPicker: ({ enabled, selectedLabel, open, setOpen, children, id, triggerClassName, dropdownClassName, triggerProps, }: DesktopSelectPickerProps) => JSX.Element;
|
|
373
373
|
|
|
374
374
|
declare interface DesktopSelectPickerProps {
|
|
375
|
+
enabled?: boolean;
|
|
375
376
|
selectedLabel: string | ReactNode;
|
|
376
377
|
open: boolean;
|
|
377
378
|
setOpen: (open: boolean) => void;
|
|
@@ -955,7 +956,7 @@ export declare interface SelectOptionGroup {
|
|
|
955
956
|
options: SelectOption[];
|
|
956
957
|
}
|
|
957
958
|
|
|
958
|
-
export declare const SelectPicker: ({ options, value, placeholder, onChange, name, renderSelected, }: SelectPickerProps) => JSX.Element;
|
|
959
|
+
export declare const SelectPicker: ({ options, enabled, value, placeholder, onChange, name, renderSelected, }: SelectPickerProps) => JSX.Element;
|
|
959
960
|
|
|
960
961
|
export declare interface SelectPickerOption {
|
|
961
962
|
icon?: string;
|
|
@@ -973,6 +974,7 @@ export declare type SelectPickerOptionValue = string;
|
|
|
973
974
|
|
|
974
975
|
export declare interface SelectPickerProps {
|
|
975
976
|
name: string;
|
|
977
|
+
enabled?: boolean;
|
|
976
978
|
value?: string | null;
|
|
977
979
|
onChange: (value: string) => void;
|
|
978
980
|
options: SelectPickerOption[] | SelectPickerOptionGroup[];
|