-
Notifications
You must be signed in to change notification settings - Fork 320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support placeholder in drop down with multi state #499
Conversation
…play relevant option after delete in multi mode
…play relevant option after delete in multi mode
…to feature/hadas/dropdown � Conflicts: � package-lock.json
@@ -10,12 +10,12 @@ import classes from "./ValueContainer.module.scss"; | |||
const EMPTY_ARRAY = []; | |||
|
|||
export default function Container({ children, selectProps, ...otherProps }) { | |||
const { selectedOptions, onSelectedDelete, setIsDialogShown, isDialogShown, isMultiline } = selectProps.selectProps; | |||
const { placeholder, selectProps: customProps = {} } = selectProps; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
selectProps.selectProps
? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that is the api 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this holds all the props i pass as custom to the drop down sub components
No description provided.