@hybr1d-tech/charizard 0.4.32 → 0.4.33
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.
|
@@ -83,6 +83,7 @@ interface SelectProps {
|
|
|
83
83
|
* props to add custom dropdown
|
|
84
84
|
*/
|
|
85
85
|
CustomDropdownIndicator?: React.ReactNode;
|
|
86
|
+
customValue?: any;
|
|
86
87
|
}
|
|
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;
|
|
88
|
+
export declare function Select({ options, onChange, name, id, className, placeholder, selectStyles, defaultValue, formatGroupLabel, customContainerStyles, menuPlacement, errorMsg, extraprops, isDisabled, isSearchable, isMulti, isClearable, customValue, CustomDropdownIndicator, }: SelectProps): import("react/jsx-runtime").JSX.Element;
|
|
88
89
|
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 {};
|