Skip to content

Commit

Permalink
Extract from 887eaa5361411d21699a214838c04a7b0bde9726
Browse files Browse the repository at this point in the history
  • Loading branch information
akeneo committed Jun 10, 2024
1 parent 4009b40 commit f5f8638
Show file tree
Hide file tree
Showing 7 changed files with 156 additions and 51 deletions.
3 changes: 2 additions & 1 deletion lib/components/Input/SelectInput/SelectInput.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ declare type SelectInputProps = Override<Override<React.InputHTMLAttributes<HTML
})>;
declare const SelectInput: {
({ id, placeholder, invalid, value, emptyResultLabel, children, onChange, clearable, clearLabel, openLabel, readOnly, verticalPosition, onNextPage, onSearchChange, disableInternalSearch, "aria-labelledby": ariaLabelledby, ...rest }: SelectInputProps): React.JSX.Element;
Option: import("styled-components").StyledComponent<"span", any, {
Option: import("styled-components").StyledComponent<"span", any, Omit<React.HTMLAttributes<HTMLSpanElement>, "value" | "disabled"> & {
value: string;
disabled?: boolean | undefined;
}, never>;
};
export { SelectInput };
40 changes: 27 additions & 13 deletions lib/components/Input/SelectInput/SelectInput.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f5f8638

Please sign in to comment.