@hybr1d-tech/charizard 0.4.32 → 0.4.34

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.
@@ -4,3 +4,4 @@ export declare const MultiValueRemove: (props: any) => import("react/jsx-runtime
4
4
  export declare const ClearIndicator: (props: any) => import("react/jsx-runtime").JSX.Element;
5
5
  export declare const DropdownIndicator: (props: any) => import("react/jsx-runtime").JSX.Element;
6
6
  export declare const SingleValue: (props: any) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const MenuList: (props: any) => import("react/jsx-runtime").JSX.Element;
@@ -83,6 +83,8 @@ interface SelectProps {
83
83
  * props to add custom dropdown
84
84
  */
85
85
  CustomDropdownIndicator?: React.ReactNode;
86
+ customValue?: any;
87
+ isVirtualized?: boolean;
86
88
  }
87
- export declare function Select({ options, onChange, name, id, className, placeholder, selectStyles, defaultValue, formatGroupLabel, customContainerStyles, menuPlacement, errorMsg, extraprops, isDisabled, isSearchable, isMulti, isClearable, CustomDropdownIndicator, }: SelectProps): import("react/jsx-runtime").JSX.Element;
89
+ export declare function Select({ options, onChange, name, id, className, placeholder, selectStyles, defaultValue, formatGroupLabel, customContainerStyles, menuPlacement, errorMsg, extraprops, isDisabled, isSearchable, isMulti, isClearable, customValue, CustomDropdownIndicator, isVirtualized, }: SelectProps): import("react/jsx-runtime").JSX.Element;
88
90
  export {};
@@ -75,6 +75,7 @@ interface SelectAsyncProps {
75
75
  * extra props to pass for select component
76
76
  */
77
77
  extraProps?: any;
78
+ customValue?: any;
78
79
  }
79
- export declare function SelectAsync({ options, onChange, name, id, className, placeholder, selectStyles, defaultValue, formatGroupLabel, customContainerStyles, menuPlacement, errorMsg, extraProps, isDisabled, isSearchable, isMulti, isClearable, }: SelectAsyncProps): import("react/jsx-runtime").JSX.Element;
80
+ export declare function SelectAsync({ options, onChange, name, id, className, placeholder, selectStyles, defaultValue, formatGroupLabel, customContainerStyles, menuPlacement, errorMsg, extraProps, isDisabled, isSearchable, isMulti, isClearable, customValue, }: SelectAsyncProps): import("react/jsx-runtime").JSX.Element;
80
81
  export {};