x
1
2
3
4
5
6
7
8
9
10
11
12
13
<nav aria-label="List heading" data-view-component="true"> <nav-list> <ul data-target="nav-list.topLevelList" data-view-component="true" class="ActionListWrap"> <li data-item-id="" data-targets="nav-list.items" data-view-component="true" class="ActionListItem"> <button id="item-f4e5697c-4f2e-4667-b14e-c1197cee2197" type="button" data-view-component="true" class="ActionListContent"> <span data-view-component="true" class="ActionListItem-label"> Really really long label that may wrap, truncate, or appear as a tooltip </span> </button> </li> </ul> </nav-list></nav>
No notes provided.
1
2
3
4
5
6
render(Primer::Beta::NavList.new(aria: { label: "List heading" })) do |component| component.with_item( label: "Really really long label that may wrap, truncate, or appear as a tooltip", truncate_label: truncate_label )end
No params configured.