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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@shortcm/tab-scroller

v0.44.1

Published

The Material Components for the web tab scroller component

Downloads

5

Readme

Tab Scroller

A Tab Scroller allows for smooth native and animated scrolling of tabs.

Design & API Documentation

Installation

npm install @material/tab-scroller

Basic Usage

HTML Structure

<div class="mdc-tab-scroller">
  <div class="mdc-tab-scroller__scroll-area">
    <div class="mdc-tab-scroller__scroll-content"></div>
  </div>
</div>

Styles

@import "@material/tab-scroller/mdc-tab-scroller";

JavaScript Instantiation

import {MDCTabScroller} from '@material/tab-scroller';

const tabScroller = new MDCTabScroller(document.querySelector('.mdc-tab-scroller'));

See Importing the JS component for more information on how to import JavaScript.

Style Customization

CSS Classes

CSS Class | Description --- | --- mdc-tab-scroller | Mandatory. Contains the tab scroller content. mdc-tab-scroller__scroll-area | Mandatory. Denotes the scrolling area. mdc-tab-scroller__scroll-content | Mandatory. Denotes the scrolling content. mdc-tab-scroller--align-start | Optional. Sets the elements inside the scroll content element to be aligned to the start of the scroll content element. mdc-tab-scroller--align-end | Optional. Sets the elements inside the scroll content element to be aligned to the end of the scroll content element. mdc-tab-scroller--align-center | Optional. Sets the elements inside the scroll content element to be aligned to the center of the scroll content element.

NOTE: The align modifier classes are only applicable when the contents do not meet or exceed the width of the Tab Scroller and Tab Bar (i.e., most commonly, when mdc-tab--min-width is used on each tab).

MDCTabScroller Methods

Method Signature | Description --- | --- scrollTo(scrollX: number) => void | Scrolls to the scrollX value. incrementScroll(scrollX: number) => void | Increments the current scroll value by the scrollX value. getScrollPosition() => number | Returns the current visual scroll position. getScrollContentWidth() => number | Returns the width of the scroll content element.

Usage within Web Frameworks

If you are using a JavaScript framework, such as React or Angular, you can create a Tab Scroller for your framework. Depending on your needs, you can use the Simple Approach: Wrapping MDC Web Vanilla Components, or the Advanced Approach: Using Foundations and Adapters. Please follow the instructions here.

MDCTabScrollerAdapter

Method Signature | Description --- | --- eventTargetMatchesSelector(eventTarget: EventTarget, selector: string) => boolean | Returns true if the given event target satisfies the given CSS selector. addClass(className: string) => void | Adds a class to the root element. addScrollAreaClass(className: string) => void | Adds a class to the scroll area element. removeClass(className: string) => void | Removes a class from the root element. setScrollAreaStyleProperty(property: string, value: string) => void | Sets the given style property on the scroll area element. setScrollContentStyleProperty(property: string, value: string) => void | Sets the given style property on the scroll content element. getScrollContentStyleValue(property: string) => string | Returns the given style property value on the scroll content element. setScrollAreaScrollLeft(scrollLeft: number) => void | Sets the scroll area element's scrollLeft. getScrollAreaScrollLeft() => number | Returns the scroll area element's scrollLeft. getScrollContentOffsetWidth() => number | Returns the scroll content element's offsetWidth. getScrollAreaOffsetWidth() => number | Returns the scroll area element's offsetWidth. computeHorizontalScrollbarHeight() => number | Returns the height of the browser's horizontal scrollbars (in px).

util Functions

MDC Tab Scroller provides a util module with functions to help implement adapter methods.

Function Signature | Description --- | --- computeHorizontalScrollbarHeight(document: Document) => number | Returns the height of the browser's horizontal scrollbars (in px).

MDCTabScrollerFoundation

Method Signature | Description --- | --- scrollTo(scrollX: number) => void | Scrolls to the scrollX value. incrementScroll(scrollX: number) => void | Increments the current scroll value by the scrollX value. getScrollPosition() => number | Returns the current visual scroll position.