-
Notifications
You must be signed in to change notification settings - Fork 274
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(ui5-li): add text wrapping support #11108
base: main
Are you sure you want to change the base?
Conversation
bf65704
to
10f7b58
Compare
7060ff3
to
166940b
Compare
07401f2
to
9a78e32
Compare
6ab4f6b
to
744e6f1
Compare
57a1c86
to
2d144d4
Compare
2d144d4
to
af1dd1c
Compare
The standard list item now supports content wrapping through a new "wrapping" property. When enabled, long text content (title and description) will wrap to multiple lines instead of truncating with an ellipsis. Key features: - Responsive behavior based on screen size: - On mobile (size S): Text truncates after 100 characters - On tablets/desktop (size M/L): Text truncates after 300 characters - "Show More/Less" functionality for very long content using ui5-expandable-text - Works for both title and description fields - CSS styling to ensure proper layout in different states Implementation details: - Added "wrapping" boolean property to ListItemStandard component - Conditionally render content using ExpandableText component when wrapping is enabled - Added _maxCharacters getter to determine truncation point based on media range - Updated ListItemStandardTemplate to handle wrapped content rendering - Added CSS styles to support proper wrapping behavior - Updated HTML test page with examples Documentation: - Added new section in List.mdx explaining the wrapping behavior - Created detailed sample in WrappingBehavior folder - Added JSDoc descriptions for the new property - Added note about deprecated usage of default slot in favor of text property Tests: - Added desktop test for 300 character limit - Added mobile-specific test for 100 character limit - Added test for toggling wrapping property NOTE: This change also promotes the use of the "text" property (added in v2.9.0) instead of the default slot content for setting list item text. The default slot usage is now deprecated and will be removed in a future version.
- Updated the ListItemStandard class and ListItemStandardTemplate - Updated CSS selectors to work with wrapping-type="Normal" attribute - Updated the available test cases - Updated the documentation - Updated the samples
- Add ExpandableTextTemplateParams type to handle text template parameters - Create ListItemStandardExpandableTextTemplate component for expandable text - Update ListItemStandard and ListItemStandardTemplate to support text wrapping - Extract shared interface to types folder to avoid duplication
af1dd1c
to
2a8cc13
Compare
// Only load ExpandableText if "Normal" wrapping is used | ||
if (this.wrappingType === "Normal") { | ||
// If feature is already loaded (preloaded by the user), use the existing template | ||
if (ListItemStandard.ExpandableTextTemplate) { |
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.
For this to be preloaded the user will have to import it, so we must create a file ListItemStandardExpandableText.ts next to the template. For reference, check the ColorPaletteMoreColors.ts
and all the places it is mentioned (docs, component-import.js)
*/ | ||
export default function ListItemStandardExpandableTextTemplate( | ||
this: ListItemStandard, | ||
options: ExpandableTextTemplateParams |
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.
to be consistent with other templates, lets rename this prop to injectedProps, check ButtonTemplate or ListItemBaseTempalte
Description
The standard list item
ui5-li
now supports content wrapping through a publicly availablewrappingType
property. When set to "Normal", long text content (title and description) will wrap to multiple lines instead of truncating with an ellipsis.Key features:
ui5-expandable-text
Implementation details:
wrappingType
property public available with options "None" (default) and "Normal"ui5-expandable-text
component whenwrappingType
is "Normal"_maxCharacters
getter to determine truncation point based on media rangewrapping-type
attributeDocumentation:
default
slot in favor oftext
propertyTests:
wrappingType
propertyNOTE: This change also promotes the use of the
text
property (added inv2.9.0
) instead of thedefault
slot content for setting list item text. Thedefault
slot usage is now deprecated and will be removed in a future version.Implements: #9745