You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(ui5-li): add text wrapping support with expandable text
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.
it("renders list items with wrapping functionality",()=>{
183
+
constlongText="This is a very long text that should demonstrate the wrapping functionality of ListItemStandard components; This is a very long text that should demonstrate the wrapping functionality of ListItemStandard components; This is a very long text that should demonstrate the wrapping functionality of ListItemStandard components; This is a very long text that should demonstrate the wrapping functionality of ListItemStandard components; This is a very long text that should demonstrate the wrapping functionality of ListItemStandard components";
184
+
constlongDescription="This is an even longer description text to verify that wrapping works correctly for the description part of the list item as well; This is an even longer description text to verify that wrapping works correctly for the description part of the list item as well; This is an even longer description text to verify that wrapping works correctly for the description part of the list item as well; This is an even longer description text to verify that wrapping works correctly for the description part of the list item as well; This is an even longer description text to verify that wrapping works correctly for the description part of the list item as well; This is an even longer description text to verify that wrapping works correctly for the description part of the list item as well";
// Check that ExpandableText components are present in the wrapping item
200
+
cy.get("#wrapping-item")
201
+
.shadow()
202
+
.find("ui5-expandable-text")
203
+
.should("exist")
204
+
.and("have.length",2);
205
+
});
206
+
207
+
it("uses maxCharacters of 300 on desktop viewport for wrapping list items",()=>{
208
+
constlongText="This is a very long text that exceeds 100 characters but is less than 300 characters. This sentence is just to add more text to ensure we pass the 100 character threshold. And now we're adding even more text to be extra certain that we have enough content to demonstrate the behavior properly. And now we're adding even more text to be extra certain that we have enough content to demonstrate the behavior properly. And now we're adding even more text to be extra certain that we have enough content to demonstrate the behavior properly.";
// Check that ExpandableText is created with maxCharacters prop of 300
217
+
cy.get("#wrapping-item")
218
+
.shadow()
219
+
.find("ui5-expandable-text")
220
+
.first()
221
+
.invoke('prop','maxCharacters')
222
+
.should('eq',300);
223
+
});
224
+
225
+
it("should switch wrapping type when wrapping prop is toggled",()=>{
226
+
constlongText="This is a very long text that should be wrapped when the wrapping prop is enabled, and truncated when it's disabled. This is a very long text that should be wrapped when the wrapping prop is enabled, and truncated when it's disabled. This is a very long text that should be wrapped when the wrapping prop is enabled, and truncated when it's disabled. This is a very long text that should be wrapped when the wrapping prop is enabled, and truncated when it's disabled. This is a very long text that should be wrapped when the wrapping prop is enabled, and truncated when it's disabled. And now we're adding even more text to be extra certain that we have enough content to demonstrate the behavior properly.";
it("adjusts maxCharacters based on viewport size for wrapping list items",()=>{
10
+
constlongText="This is a very long text that exceeds 100 characters but is less than 300 characters. This sentence is just to add more text to ensure we pass the 100 character threshold. And now we're adding even more text to be extra certain.";
Copy file name to clipboardexpand all lines: packages/main/src/ListItemStandard.ts
+73-27
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,8 @@ import ListItemStandardTemplate from "./ListItemStandardTemplate.js";
28
28
* @csspart checkbox - Used to style the checkbox rendered when the list item is in multiple selection mode
29
29
* @slot {Node[]} default - Defines the text of the component.
30
30
*
31
-
* **Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.
31
+
* **Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design. <br/>
32
+
* **Note:** Deprecated since version `2.9.0`. Use the `text` property instead.
32
33
* @constructor
33
34
* @extends ListItem
34
35
* @public
@@ -40,37 +41,26 @@ import ListItemStandardTemplate from "./ListItemStandardTemplate.js";
0 commit comments