🚀 Big News:Socket Has Acquired Secure Annex.Learn More
Socket
Book a DemoSign in
Socket

@material/mwc-tab-indicator

Package Overview
Dependencies
Maintainers
20
Versions
707
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@material/mwc-tab-indicator

Material Design tab indicator web component

Source
npmnpm
Version
0.18.0
Version published
Weekly downloads
8.2K
62.52%
Maintainers
20
Weekly downloads
 
Created
Source

mwc-tab-indicator

:warning: These components are a work in progress. They are pre-release and should be considered experimental, as they may undergo major changes before release. We are experimenting with alternate architectures and approaches with the goal of allowing us to bring the most correct and optimal implementation of Material components to the widest possible audiences. Visible progress may be slow, as this research is across teams and repositories so is not consistently reflected in commits to this codebase. :warning:

A Material Components tab indicator implementation using Web Components

Getting started

  • The easiest way to try out mwc-tab-indicator is to use one of these online tools:

  • You can also copy this HTML file into a local file and run it in any browser that supports JavaScript Modules.

  • When you're ready to use mwc-tab-indicator in a project, install it via npm. To run the project in the browser, a module-compatible toolctain is required. We recommend installing the Polymer CLI and using its development server as follows.

    • Ensure the webcomponents polyfills are included in your HTML page

      • Install webcomponents polyfills

        npm i @webcomponents/webcomponentsjs

      • Add webcomponents polyfills to your HTML page

        <script src="@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>

    • Add mwc-tab-indicator to your project:

      npm i @material/mwc-tab-indicator

    • Import the mwc-tab-indicator definition into your HTML page:

      <script type="module" src="@material/mwc-tab-indicator/index.js"></script>

      Or into your module script:

      import {TabIndicator} from "@material/mwc-tab-indicator"

    • Create an instance of mwc-tab-indicator in your HTML page, or via any framework that supports rendering Custom Elements:

      <mwc-tab-indicator>sentiment_very_satisfied</mwc-tab-indicator>

    • Install the Polymer CLI:

      npm i -g polymer-cli

    • Run the development server and open a browser pointing to its URL:

      polymer serve

    mwc-tab-indicator is published on npm using JavaScript Modules. This means it can take advantage of the standard native JavaScript module loader available in all current major browsers.

    However, since mwc-tab-indicator uses npm convention to reference dependencies by name, a light transform to rewrite specifiers to URLs is required to get it to run in the browser. The polymer-cli's development server polymer serve automatically handles this transform.

    Tools like WebPack and Rollup can also be used to serve and/or bundle mwc-tab-indicator.

Supported Browsers

The last 2 versions of all modern browsers are supported, including Chrome, Safari, Opera, Firefox, Edge. In addition, Internet Explorer 11 is also supported.

Keywords

material design

FAQs

Package last updated on 03 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts