-
Notifications
You must be signed in to change notification settings - Fork 13
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
DescriptionList feature enhancements #1517
Merged
Merged
Conversation
This file contains 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
30517a2
to
719e8c7
Compare
BREAKING CHANGE: Introduces a DescriptionGroup that allows the DescriptionList to be displayed in advanced layouts. Each pair of DescriptionTerm and DescriptionDetail needs to be wrapped with a DescriptionGroup following this release. Introduces `columns` and `groupMinWidth` props on the DescriptionList.
The `overlay` prop in the Sidebar component has been enhanced to accept both boolean and string values, allowing for more flexible overlay behavior without breaking existing implementations. - The `overlay` prop now accepts: - `true`: Render a visible overlay. - `false`: Render an invisible overlay. - `"transparent"`: Render an invisible overlay (same as "false"). - `"show"`: Render a visible overlay (same as "true"). - `"hide"`: Do not render the overlay at all (new behavior). - **No changes are required** for existing implementations using boolean values (`true` or `false`). These will continue to function as before. - To completely remove the overlay, use `overlay="hide"`. - For new components, consider using the string values for more explicit control over overlay behavior. This change is backward-compatible, ensuring that existing codebases remain functional. However, adopting the new string values is recommended for future-proofing and clarity in new components.
BREAKING CHANGE: changes the name to align with the intention behind the theme value.
719e8c7
to
c1023e3
Compare
🎉 This PR is included in version 14.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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.
Description
Introduces a new and improved DescriptionList component with enhanced layout capabilities:
Breaking Changes
DescriptionGroup
pill
torounded
Changes include
Feature checklist