-
Notifications
You must be signed in to change notification settings - Fork 734
Feat/chips input v2 #1490
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
Feat/chips input v2 #1490
Conversation
@mendyEdri What's the status on this one? Did you finish with my comments? |
@Inbal-Tish Yes, if it passed don't merge it just yet, I want to test it in Spaces first. Thank you! |
@mendyEdri Hi. I don't see the last changes. Did you push? |
Right, pushed |
src/components/chipsInput/index.tsx
Outdated
this.removeMarkedTag(); | ||
} | ||
} | ||
|
||
onKeyPress = (event: NativeSyntheticEvent<TextInputKeyPressEventData>) => { | ||
_.invoke(this.props, 'onKeyPress', event); | ||
|
||
const {disableTagRemoval} = this.props; | ||
if (disableTagRemoval) { |
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 logic should move to removeTag method
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.
I don't see any changes here...
Description
Added a few features to ChipsInput:
maxHeight
for scrolling optionleftElement
for ui like search icon etc'Chip
component internally for a better ui and more convenient apititle
that floating above the chipsChangelog
ChipsInput
'stags
will be deprecated, please usechipsProps
instead.Tasks