@codeleap/web 3.25.2 → 3.25.3
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/package.json
CHANGED
|
@@ -33,8 +33,8 @@ const DefaultOption = (props: TCustomOption & { component: (props: TCustomOption
|
|
|
33
33
|
rightIcon={isSelected && selectedIcon}
|
|
34
34
|
debugName={debugName}
|
|
35
35
|
{...itemProps}
|
|
36
|
-
styles={styles}
|
|
37
36
|
{...props?.data?.itemProps}
|
|
37
|
+
styles={styles}
|
|
38
38
|
/>
|
|
39
39
|
)
|
|
40
40
|
} else {
|
|
@@ -176,7 +176,7 @@ const defaultProps: Partial<SelectProps> = {
|
|
|
176
176
|
|
|
177
177
|
export const Select = forwardRef<HTMLInputElement, SelectProps>(
|
|
178
178
|
<T extends string | number = string, Multi extends boolean = false>
|
|
179
|
-
|
|
179
|
+
(props: SelectProps<T, Multi>, inputRef: React.ForwardedRef<HTMLInputElement>) => {
|
|
180
180
|
|
|
181
181
|
type Option = FormTypes.Option<T>
|
|
182
182
|
|