x-tabs
x-tabs is a public XTend component reference for third-party developers who need to embed the component without private project context.
What it solves
x-tabs participates in navigation. Keep route state, active indicators and router events explicit so a host can synchronize history, focus and announcements. The component is loaded from components/xtabs.js, declared through components/manifest.json and typed through components/xtabs.d.ts. That makes the article a practical contract: a host can see which attributes are safe, which events can be listened to, which methods are callable and which CSS hooks are intended for customization.
Use this page when you are integrating XTend into a product shell, a micro frontend, a CMS-rendered page or an RMT-authored surface. It focuses on the public surface instead of internal implementation details, so it is suitable for teams that only consume the package.
When to use it
Use x-tabs when you need the behavior described by its interactive, routing profile and want a local Web Component that follows XTend theming, accessibility and scheduling conventions. It is especially useful when the host must stay framework-neutral, keep component code local and avoid CDN dependencies.
Third-party teams should prefer the documented attributes, slots, events and methods before wrapping the component. Wrappers are fine for product conventions, but the wrapper should pass through the public API instead of reaching into the shadow DOM.
Avoid when
Avoid x-tabs when you need behavior that is not represented by the documented API, or when your host cannot load xtend-loader.js and components/manifest.json. Do not depend on private class names, generated internal nodes or unlisted state keys. If you need a design variant, use tokens, CSS parts or slots before forking the runtime file.
Load and register
Load the XTend loader once per page. The loader reads the local manifest and resolves x-tabs to ./xtabs.js. Keep the manifest URL same-origin unless your security policy explicitly allows another source.
<script type="module" src="/xtend-loader.js" data-manifest="/components/manifest.json"></script>
<x-tabs id="demo-xtabs"
selected="0"
orientation="horizontal"
text-color="demo">
<x-tab>Overview</x-tab>
<x-tab>Details</x-tab>
</x-tabs>
Use orientation="vertical" when a settings panel or dense shell benefits from a left-side tab rail. Vertical tabs set aria-orientation="vertical" on the tablist while preserving the same tab-selected event.
Examples
The integration example shows the host-side pattern: query the element, listen to the first public event when one exists and call a public method only after the element has been upgraded. This keeps hydration and RMT materialization predictable.
const component = document.querySelector('x-tabs');
component.addEventListener('tab-selected', (event) => {
console.log('tab-selected', event.detail);
});
if ('selectTab' in component) {
component.selectTab();
}
For production screens, keep IDs stable when state keys or diagnostics include <id>. Stable IDs make event logs, RMT schedules and browser tests easier to compare across deployments.
API reference
Attributes:
selectedtext-colororientation
Events:
tab-selectedxtend-command
Methods:
selectTab(index: number)getPerformanceBudget()snapshotPerformance()
Slots:
default
CSS parts:
- No public CSS parts detected in the current runtime.
CSS custom properties:
--xtend-nav---xtend-nav-surface--xtend-nav-text--xtend-nav-border-color--xtend-nav-radius--xtend-nav-gap--xtend-nav-font-family--xtend-nav-font-size--xtend-nav-active-surface--xtend-nav-active-text--xtend-nav-current-indicator--xtend-nav-hover-surface--xtend-nav-focus-ring--xtend-nav-disabled-opacity--xtend-surface-panel--xtend-signature-surface-panel
Integration notes
- UX profile:
xtend.component.navigation-routing-ux-profile.v1. - RMT contract:
xtend.rmt.component-contract.v1. - Performance profile:
xtend.performance.component-profile.v1. - RMT schedules:
component.visible.mount,component.visible.hydrate,ui.user-blocking.tabs,route.transition.tab,diagnostics.snapshot. - Keyboard-Navigation:
ArrowRight,ArrowLeft,ArrowUp,ArrowDown,Home,End,aria-controls,bubbles: true,composed: true,snapshotPerformance().
RMT Hosts should treat the component as a Custom Element boundary: pass attributes as component props, bind DOM events to commands and keep scheduling metadata outside the component. Plain HTML hosts can use the same attributes and events without an RMT compiler.
Theming should flow through XTend design tokens first. CSS parts are intended for targeted skinning of exposed controls, while CSS custom properties are better for broader color, spacing, radius and motion changes. Accessibility hooks such as labels, live regions and focus handling should be preserved when composing the component.
Troubleshooting
- If
x-tabsstays unupgraded, confirm thatxtend-loader.jsloaded and thatcomponents/manifest.jsoncontainsx-tabs. - If events are missing, listen after
customElements.whenDefined('x-tabs')and check that the interaction is not disabled or blocked by validation. - If styling does not apply, prefer documented CSS variables and parts; shadow DOM internals are intentionally not stable.
- If an RMT host renders stale state, check the state key and schedule records listed above before changing component code.