npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@m3e/tabs

v1.2.2

Published

Tabs for M3E

Readme

@m3e/tabs

The m3e-tabs component provides a structured navigation surface for organizing content into distinct views, where only one view is visible at a time. It supports scrollable tab headers with optional pagination, accessible labeling for navigation controls, and configurable header positioning to suit various layout contexts. Two visual variants are available: primary, which emphasizes active indicators and shape styling for prominent navigation, and secondary, which offers a more subtle presentation with reduced indicator thickness. Stretch behavior allows tabs to expand and align rhythmically within their container, consistent with Material 3 guidance.

This package is part of M3E monorepo, a unified suite of Material 3 web components. Explore the docs to see them in action.

📦 Installation

npm install @m3e/tabs

💻 Editor Integration

This package includes a Custom Elements Manifest to support enhanced editor tooling and developer experience.

Visual Studio Code

To enable autocomplete and hover documentation for @m3e/tabs, install the Custom Elements Manifest Language Server extension. It will automatically detect the manifest bundled with this package and surface tag names, attributes, slots, and events in supported files.

Alternately, you can explicitly reference the html-custom-data.json and css-custom-data.json in your workspace settings:

{
  "html.customData": ["./node_modules/@m3e/tabs/dist/html-custom-data.json"],
  "css.customData": ["./node_modules/@m3e/tabs/dist/css-custom-data.json"]
}

🚀 Native Module Support

This package uses JavaScript Modules. To use it directly in a browser without a bundler, use a module script similar to the following.

<script type="module" src="/node_modules/@m3e/tabs/dist/index.js"></script>

You also need a module script for @m3e/icon-button and m3e/slide-group due to these being a dependency.

<script type="module" src="/node_modules/@m3e/icon-button/dist/index.js"></script>
<script type="module" src="/node_modules/@m3e/slide-group/dist/index.js"></script>

In addition, you must use an import map to include dependencies.

<script type="importmap">
  {
    "imports": {
      "lit": "https://cdn.jsdelivr.net/npm/[email protected]/+esm",
      "@m3e/core": "/node_modules/@m3e/core/dist/index.js",
      "@m3e/core/a11y": "/node_modules/@m3e/core/dist/a11y.js",
      "@m3e/core/bidi": "/node_modules/@m3e/core/dist/bidi.js"
    }
  }
</script>

For production, use index.min.js, a11y.min.js, and bidi.min.js for faster load times.

🗂️ Elements

  • m3e-tabs — Organizes content into separate views where only one view can be visible at a time.
  • m3e-tab — An interactive element that, when activated, presents an associated tab panel.
  • m3e-tab-panel — A panel presented for a tab.

🧪 Examples

The following example illustrates using the m3e-tabs, m3e-tab, and m3e-tab-panel components to present secondary tabs.

<m3e-tabs>
  <m3e-tab selected for="videos"><m3e-icon slot="icon" name="videocam"></m3e-icon>Video</m3e-tab>
  <m3e-tab for="photos"><m3e-icon slot="icon" name="photo"></m3e-icon>Photos</m3e-tab>
  <m3e-tab for="audio"><m3e-icon slot="icon" name="music_note"></m3e-icon>Audio</m3e-tab>
  <m3e-tab-panel id="videos">Videos</m3e-tab-panel>
  <m3e-tab-panel id="photos">Photos</m3e-tab-panel>
  <m3e-tab-panel id="audio">Audio</m3e-tab-panel>
</m3e-tabs>

📖 API Reference

🗂️ m3e-tabs

This section details the attributes, events, slots and CSS custom properties available for the m3e-tabs component.

⚙️ Attributes

| Attribute | Type | Default | Description | | --------------------- | ---------------------------- | ----------------- | --------------------------------------------------------------------------- | | disable-pagination | boolean | false | Whether scroll buttons are disabled. | | header-position | "before" | "after" | "before" | The position of the tab headers. | | next-page-label | string | "Next page" | The accessible label given to the button used to move to the previous page. | | previous-page-label | string | "Previous page" | The accessible label given to the button used to move to the next page. | | stretch | boolean | false | Whether tabs are stretched to fill the header. | | variant | "primary" | "secondary" | "secondary" | The appearance variant of the tabs. |

🔔 Events

| Event | Description | | -------- | -------------------------------------- | | change | Emitted when the selected tab changes. |

🧩 Slots

| Slot | Description | | ----------- | --------------------------------------------------------------------- | | (default) | Renders the tabs. | | panel | Renders the panels of the tabs. | | next-icon | Renders the icon to present for the next button used to paginate. | | prev-icon | Renders the icon to present for the previous button used to paginate. |

🎛️ CSS Custom Properties

| Property | Description | | -------------------------------------------------- | -------------------------------------------------------------------------------- | | --m3e-tabs-paginator-button-icon-size | Overrides the icon size for paginator buttons. | | --m3e-tabs-active-indicator-color | Color of the active tab indicator. | | --m3e-tabs-primary-before-active-indicator-shape | Border radius for active indicator when header is before and variant is primary. | | --m3e-tabs-primary-after-active-indicator-shape | Border radius for active indicator when header is after and variant is primary. | | --m3e-tabs-primary-active-indicator-inset | Inset for primary variant's active indicator. | | --m3e-tabs-primary-active-indicator-thickness | Thickness for primary variant's active indicator. | | --m3e-tabs-secondary-active-indicator-thickness | Thickness for secondary variant's active indicator. |

🗂️ m3e-tab

This section details the attributes, slots and CSS custom properties available for the m3e-tab component.

⚙️ Attributes

| Attribute | Type | Default | Description | | ---------- | --------- | ------- | ---------------------------------------------------------------------------- | | disabled | boolean | false | Whether the element is disabled. | | for | string | | The identifier of the interactive control to which this element is attached. | | selected | boolean | false | Whether the element is selected. |

🧩 Slots

| Slot | Description | | ----------- | --------------------------------------- | | (default) | Renders the label of the tab. | | icon | Renders an icon before the tab's label. |

🎛️ CSS Custom Properties

| Property | Description | | -------------------------------------------- | ------------------------------------------- | | --m3e-tab-font-size | Font size for tab label. | | --m3e-tab-font-weight | Font weight for tab label. | | --m3e-tab-line-height | Line height for tab label. | | --m3e-tab-tracking | Letter spacing for tab label. | | --m3e-tab-padding-start | Padding on the inline start of the tab. | | --m3e-tab-padding-end | Padding on the inline end of the tab. | | --m3e-tab-focus-ring-shape | Border radius for the focus ring. | | --m3e-tab-selected-color | Text color for selected tab. | | --m3e-tab-selected-container-hover-color | Hover state-layer color for selected tab. | | --m3e-tab-selected-container-focus-color | Focus state-layer color for selected tab. | | --m3e-tab-selected-ripple-color | Ripple color for selected tab. | | --m3e-tab-unselected-color | Text color for unselected tab. | | --m3e-tab-unselected-container-hover-color | Hover state-layer color for unselected tab. | | --m3e-tab-unselected-container-focus-color | Focus state-layer color for unselected tab. | | --m3e-tab-unselected-ripple-color | Ripple color for unselected tab. | | --m3e-tab-disabled-color | Text color for disabled tab. | | --m3e-tab-disabled-opacity | Text opacity for disabled tab. | | --m3e-tab-spacing | Column gap between icon and label. | | --m3e-tab-icon-size | Font size for slotted icon. |

🗂️ m3e-tab-panel

This section details the slots available for the m3e-tab-panel component.

🧩 Slots

| Slot | Description | | ----------- | --------------------------------- | | (default) | Renders the content of the panel. |

🤝 Contributing

See the root monorepo CONTRIBUTING.md for guidelines on contributing to this package.

📄 License

This package is licensed under the MIT License.