-
Notifications
You must be signed in to change notification settings - Fork 6
feat(ItemBase) add generic item component #752
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
base: main
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
📦 NPM canary releaseDeployed canary version 0.0.0-canary-8ef60f0. |
🏋️ Size limit report
Click here if you want to find out what is changed in this build |
🧪 Storybook is successfully deployed!
|
{validationState ? validation : null} | ||
</> | ||
); | ||
}, [suffix, validationState, validation]); |
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.
{state.selectedItem | ||
? state.selectedItem.rendered | ||
: placeholder || <> </>} | ||
</SelectTrigger> |
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.
Bug: Select Component Icon Display Issues
The Select
component's rightIcon
logic now incorrectly hides the dropdown arrow (DirectionIcon
) when isLoading
is true, instead of displaying it simultaneously with the LoadingIcon
. Additionally, the suffixPosition
prop is no longer respected, causing user-provided suffixes to always render before validation icons, breaking their intended placement.
No description provided.