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
Copy file name to clipboardexpand all lines: README.md
+64
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,70 @@ In those cases, apply `data-tab-container-no-tabstop` to the `tabpanel` element.
106
106
</div>
107
107
</tab-container>
108
108
```
109
+
### Unmanaged slots
110
+
111
+
`<tab-container>` aims to simplify complex markup away in the ShadowDOM, so that the HTML you end up writing is overall less. However sometimes it can be useful to have _full_ control over the markup. Each of the `::part` selectors are also `<slot>`s, this means you can take any part and slot it, overriding the built-in ShadowDOM.
112
+
#### Unmanaged `tablist`
113
+
114
+
You are able to provide your own `role=tablist` and `<tab-container>` will accommodate. This can be useful if you need extra presentational markup in the tablist. But remember:
115
+
116
+
- You must ensure that all child elements are `role=tab` or `role=presentational`.
117
+
- The element will still slot contents before and after this element, in order to correctly present the tablist.
You are able to slot the `tablist-tab-wrapper` part. This slot manages the tabs but not the before or after elements. In this way, you can put custom HTML inside the tab list. Bear in mind if you're supplying this element that:
134
+
135
+
- You must also supply a `role=tablist` as a child.
136
+
- You must ensure that all child elements are `role=tab` or `role=presentational`.
137
+
- The element will still slot contents before and after this element, in order to correctly present the tablist.
138
+
139
+
```html
140
+
<tab-container>
141
+
<divslot="tablist-tab-wrapper">
142
+
<divrole="tablist">
143
+
<buttontype="button"role="tab">Tab one</button>
144
+
<buttontype="button"role="tab">Tab two</button>
145
+
</div>
146
+
</div>
147
+
<divrole="tabpanel"></div>
148
+
<divrole="tabpanel"></div>
149
+
</tab-container>
150
+
```
151
+
#### Unmanaged `tablist-wrapper`
152
+
153
+
If you want to take full control over the entire tab region, including managing the content before and after the tabs, then you can slot the `tablist-wrapper` element. Bear in mind if you're supplying this element that:
154
+
155
+
-`<tab-container>` will only manage slotting of `role=panel`. It won't manage elements before or after the tabs or panels.
156
+
- You won't be able to also slot the `tablist-tab-wrapper`. You can chose to omit this element though.
157
+
- You must also supply a `role=tablist` as a descendant.
158
+
- You must ensure that all child elements of the tablist `role=tab` or `role=presentational`.
159
+
- The element will still slot contents before and after this element, in order to correctly present the tablist.
0 commit comments