mainstack-design-system 0.7.24 → 0.7.25
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/build/index.d.ts +2 -1
- package/build/mainstack-design-system.js +811 -810
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -874,6 +874,7 @@ export declare interface ISelectInputProps {
|
|
|
874
874
|
openMenuOnFocus?: boolean;
|
|
875
875
|
isSearchable?: boolean;
|
|
876
876
|
formatOptionLabel?: (arg: any) => ReactNode;
|
|
877
|
+
customComponent?: Record<string, React.ComponentType<any>>;
|
|
877
878
|
}
|
|
878
879
|
|
|
879
880
|
/** @format */
|
|
@@ -1208,7 +1209,7 @@ export declare const SearchInput: ({ name, id, value, onChange, defaultValue, pl
|
|
|
1208
1209
|
|
|
1209
1210
|
export declare const SearchNormalIcon: (props: IconProps) => JSX_2.Element;
|
|
1210
1211
|
|
|
1211
|
-
export declare const SelectInput: ({ label, id, name, placeholder, onBlur, onChange, onInputChange, value, defaultValue, options, isMulti, hideSelectedOptions, CustomOption, CustomMultiValue, disabled, noOptionsMessage, fontFamily, openMenuOnFocus, isSearchable, formatOptionLabel, }: ISelectInputProps) => JSX_2.Element;
|
|
1212
|
+
export declare const SelectInput: ({ label, id, name, placeholder, onBlur, onChange, onInputChange, value, defaultValue, options, isMulti, hideSelectedOptions, CustomOption, CustomMultiValue, disabled, noOptionsMessage, fontFamily, openMenuOnFocus, isSearchable, formatOptionLabel, customComponent, }: ISelectInputProps) => JSX_2.Element;
|
|
1212
1213
|
|
|
1213
1214
|
export declare const SellIcon: (props: IconProps) => JSX_2.Element;
|
|
1214
1215
|
|