feat: Add React Filter Chip Group with Smooth Select Transitions (#28…#39340
Closed
realtushartyagi wants to merge 2 commits into
Closed
Conversation
Owner
✅ React/SCSS Submission Validated!Great work @realtushartyagi! 🎉 Your react submission passed all quality checks. ⚛️ Folder:
|
Owner
|
🔒 Pull Request Closed: Stale/Duplicate Submission 🔒 Hi @realtushartyagi! 👋 This pull request has been closed because the linked issue (#28028) is already resolved and closed. Another contributor's pull request was accepted and merged for this task first. Thank you for your contribution! |
Owner
✅ React/SCSS Submission Validated!Great work @realtushartyagi! 🎉 Your react submission passed all quality checks. ⚛️ Folder:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Description
Adds a new React Component: Filter Chip Group with Smooth Select Transitions.
This submission provides a highly interactive, accessible React component that renders a group of multi-selectable filter chips (pill tags). The component strictly manages its selection state natively via React hooks (
useState), ensuring reliable array updates. Visually, when a chip toggles into the selected state (.ease-chip-selected), it relies entirely on hardware-accelerated CSS to dynamically transition the background color. Furthermore, it triggers a sophisticated, bouncycubic-beziertransition on the child SVG wrapper'swidthandmarginproperties. This creates a tactile, premium "push-aside" entrance for the checkmark icon without relying on heavy JavaScript animation libraries.Fixes #28028
Fixes #27360
Type of Change
Submission Checklist
submissions/react/react-filter-chip-group-with-smooth-select-transitions-realtushartyagi-28028/demo.html— (N/A: React Component Submission)style.css— (N/A: Uses component-scoped .css instead)README.md— what it does, how to use it, why it fits EaseMotion CSScore/components/Feature Description
What does this add?
A React-powered Filter Chip Group that manages multi-selection state while utilizing complex, native CSS width/margin transitions to smoothly reveal checkmark icons inside the pill boundaries.
How does a developer use it?