@hybr1d-tech/charizard 0.4.33 → 0.4.35
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/components/select/Common.d.ts +1 -0
- package/dist/components/select/Select.d.ts +2 -1
- package/dist/hybr1d-ui.js +1551 -1526
- package/dist/hybr1d-ui.umd.cjs +19 -19
- package/dist/style.css +1 -1
- package/package.json +18 -17
|
@@ -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;
|
|
@@ -84,6 +84,7 @@ interface SelectProps {
|
|
|
84
84
|
*/
|
|
85
85
|
CustomDropdownIndicator?: React.ReactNode;
|
|
86
86
|
customValue?: any;
|
|
87
|
+
isVirtualized?: boolean;
|
|
87
88
|
}
|
|
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;
|
|
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;
|
|
89
90
|
export {};
|