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/card

v0.44.1

Published

The Material Components for the web card component

Downloads

2

Readme

Cards

Cards contain content and actions about a single subject.

Design & API Documentation

Installation

npm install @material/card

Basic Usage

HTML Structure

<div class="mdc-card">
  <!-- ... content ... -->
</div>

NOTE: MDC Card is designed to accommodate a wide variety of use cases. See the Card Contents section for information on helpers for specific types of content within cards.

Styles

@import "@material/card/mdc-card";

In order to remain general-purpose and support e.g. images spanning the full width of the card, MDC Card does not include padding styles on the root element. When adding free-form text content to cards, padding should be set to 16px:

.my-card-content {
  padding: 16px;
}

NOTE: MDC Card's predefined classes for content areas (e.g. mdc-card__actions) take care of their own padding.

By default, cards expand horizontally to fill all available space, and vertically to fit their contents. If you'd like to maintain a consistent width and height across cards, you'll need to set it in your styles:

.my-card {
  height: 350px;
  width: 350px;
}

You can also place cards within layout containers, such as MDC Layout Grid or CSS Flexbox or Grid.

JavaScript

MDC Card itself does not require JavaScript. However, if you place interactive components inside your cards, you may want to instantiate ripples or other components. For example:

import {MDCRipple} from '@material/ripple';

const selector = '.mdc-button, .mdc-icon-button, .mdc-card__primary-action';
const ripples = [].map.call(document.querySelectorAll(selector), function(el) {
  return new MDCRipple(el);
});

NOTE: If your card includes any icon button toggles, you will want to instantiate MDCIconButtonToggle instead of MDCRipple.

Variants

Outlined Card

By default, cards are elevated with no outline. You can render unelevated outlined cards instead by adding the mdc-card--outlined modifier class.

<div class="mdc-card mdc-card--outlined">
  <!-- ... content ... -->
</div>

Card Contents

MDC Card can be used for a wide variety of use cases, but it includes styles for a few common ones.

Primary Action

If a majority of the card (or even the entire card) should be actionable, you can add the mdc-card__primary-action class to the region to give it MDC Ripple styles. You should also assign tabindex="0" to ensure it can also be interacted with via keyboard.

<div class="mdc-card">
  <div class="mdc-card__primary-action" tabindex="0">
    <!-- content within actionable area -->
  </div>
  <!-- ... content ... -->
</div>

NOTE: We recommend avoiding adding other actionable items within mdc-card__primary-action, due to the overlapping effect of multiple nested elements with ripple and states applied at once.

Rich media

This area is used for showing rich media in cards, and optionally as a container. Use the mdc-card__media CSS class and the optional modifier classes.

<div class="my-card__media mdc-card__media mdc-card__media--16-9">
  <div class="mdc-card__media-content">Title</div>
</div>
.my-card__media {
  background-image: url("pretty.jpg");
}

Actions

This area is used for showing different actions the user can take, typically at the bottom of a card. It's often used with buttons:

<div class="mdc-card__actions">
  <button class="mdc-button mdc-card__action mdc-card__action--button">
    <span class="mdc-button__label">Action 1</span>
  </button>
  <button class="mdc-button mdc-card__action mdc-card__action--button">
    <span class="mdc-button__label">Action 2</span>
  </button>
</div>

It can also be used with icon buttons:

<div class="mdc-card__actions">
  <button class="mdc-icon-button mdc-card__action mdc-card__action--icon"
     aria-pressed="false"
     aria-label="Add to favorites"
     title="Add to favorites">
   <i class="material-icons mdc-icon-button__icon mdc-icon-button__icon--on">favorite</i>
   <i class="material-icons mdc-icon-button__icon">favorite_border</i>
  </button>
  <button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" title="Share">share</button>
  <button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" title="More options">more_vert</button>
</div>

Be sure to include the mdc-card__action class on every action for correct positioning. In addition, button icons should use the mdc-card__action--button class, and icon actions should use the mdc-card__action--icon class.

To have a single action button take up the entire width of the action row, use the --full-bleed modifier on the row:

<div class="mdc-card__actions mdc-card__actions--full-bleed">
  <a class="mdc-button mdc-card__action mdc-card__action--button" href="#">
    <span class="mdc-button__label">All Business Headlines</span>
    <i class="material-icons" aria-hidden="true">arrow_forward</i>
  </a>
</div>

To display buttons and icons in the same row, wrap them in mdc-card__action-buttons and mdc-card__action-icons elements:

<div class="mdc-card__actions">
  <div class="mdc-card__action-buttons">
    <button class="mdc-button mdc-card__action mdc-card__action--button">
      <span class="mdc-button__label">Read</span>
    </button>
    <button class="mdc-button mdc-card__action mdc-card__action--button">
      <span class="mdc-button__label">Bookmark</span>
    </button>
  </div>
  <div class="mdc-card__action-icons">
   <button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" title="Share">share</button>
    <button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" title="More options">more_vert</button>
  </div>
</div>
Icons

We recommend using Material Icons from Google Fonts:

<head>
  <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>

However, you can also use SVG, Font Awesome, or any other icon library you wish.

Combined Example

The following is an example incorporating all of the above elements:

<div class="mdc-card">
  <div class="mdc-card__primary-action">
    <div class="mdc-card__media mdc-card__media--square">
      <div class="mdc-card__media-content">Title</div>
    </div>
    <!-- ... additional primary action content ... -->
  </div>
  <div class="mdc-card__actions">
    <div class="mdc-card__action-buttons">
      <button class="mdc-button mdc-card__action mdc-card__action--button">
        <span class="mdc-button__label">Action 1</span>
      </button>
      <button class="mdc-button mdc-card__action mdc-card__action--button">
        <span class="mdc-button__label">Action 2</span>
      </button>
    </div>
    <div class="mdc-card__action-icons">
      <button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" title="Share">share</button>
      <button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" title="More options">more_vert</button>
    </div>
  </div>
</div>

Style Customization

CSS Classes

CSS Class | Description --- | --- mdc-card | Mandatory. The main card element. mdc-card--outlined | Optional. Removes the shadow and displays a hairline outline instead. mdc-card__primary-action | Optional. The main tappable area of the card. Typically contains most (or all) card content except mdc-card__actions. Only applicable to cards that have a primary action that the main surface should trigger. mdc-card__media | Optional. Media area that displays a custom background-image with background-size: cover. mdc-card__media--square | Optional. Automatically scales the media area's height to equal its width. mdc-card__media--16-9 | Optional. Automatically scales the media area's height according to its width, maintaining a 16:9 aspect ratio. mdc-card__media-content | Optional. An absolutely-positioned box the same size as the media area, for displaying a title or icon on top of the background-image. mdc-card__actions | Optional. Row containing action buttons and/or icons. mdc-card__actions--full-bleed | Optional. Removes the action area's padding and causes its only child (an mdc-card__action element) to consume 100% of the action area's width. mdc-card__action-buttons | Optional. A group of action buttons, displayed on the left side of the card (in LTR), adjacent to mdc-card__action-icons. mdc-card__action-icons | Optional. A group of supplemental action icons, displayed on the right side of the card (in LTR), adjacent to __action-buttons. mdc-card__action | Optional. An individual action button or icon. mdc-card__action--button | Optional. An action button with text. mdc-card__action--icon | Optional. An action icon with no text. We recommend using Material Icons from Google Fonts.

Sass Mixins

Mixin | Description --- | --- mdc-card-fill-color($color) | Sets the fill color of a card. mdc-card-outline($color, $thickness) | Sets the color and thickness of a card's outline (but does not remove its shadow). mdc-card-shape-radius($radius, $rtl-reflexive) | Sets the rounded shape to card with given radius size. Set $rtl-reflexive to true to flip radius values in RTL context, defaults to false. mdc-card-media-aspect-ratio($x, $y) | Maintains the given aspect ratio on a mdc-card__media subelement by dynamically scaling its height relative to its width.