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

@cagov/ds-feature-card

v2.0.1

Published

This is a design for featuring important content at the top of a page. The layout uses a sidebar pattern with the text elements: header, description and call to action button on the left and an image on the right. On smaller screens the image appears abov

Downloads

717

Readme

Feature card

The feature card highlights an action you want people to take or important information on the homepage. It is the first thing a visitor sees. It always includes:

  • Title
  • Brief description
  • Image
  • An optional image caption
  • Button

The feature card spans the full width of the screen on desktop and mobile. On mobile, the feature card will stack in this order:

  • Image
  • Image caption
  • Title
  • Description
  • Button

When and how to use it

Use the feature card to catch visitors' attention and highlight the top task or need.

We recommend always using a feature card on your homepage. Place it at the top of the homepage so it appears below the statewide header, site header, and site navigation. The only other thing that may appear above the feature card is a page alert.

Include a concise title, description, image, and one button. Choose an image that’s in harmony with your brand identity, mission, and tone. The minimum image size is 776 x 517 pixels. For best results, use images with this aspect ratio.

How not to use it

Do not use more than one feature card on your homepage.

Do not use the feature card to make an image carousel. Carousels frustrate people more than they help them and do not meet accessibility standards.

Do not put a lot of content in your feature card. Too much content is hard to read. It will also lengthen the feature card and cause awkward whitespace.

Demo and sample markup

<div
  class="wp-block-ca-design-system-hero cagov-with-sidebar cagov-with-sidebar-left cagov-featured-section cagov-bkgrd-gry cagov-block wp-block-cagov-hero">
  <div>
    <div class="cagov-stack cagov-p-2 cagov-featured-sidebar">
      <h1>We’re making changes to better serve you</h1>
      <div class="cagov-hero-body-content">
        <p>
          California has merged the three state cannabis authorities into
          a&nbsp;single,&nbsp;new Department of Cannabis Control.
        </p>

        <div class="wp-block-button">
          <a class="btn-primary" href="https://cannabis.ca.gov/about-us/consolidation/">Learn more</a>
        </div>
      </div>
    </div>
    <div>
      <img class="cagov-featured-image"
        src="https://cannabis.ca.gov/wp-content/uploads/sites/2/2021/06/cannabis-buds-hero-1024x683.jpg" alt=""
        width="1024" height="683" />
    </div>
  </div>
</div>

Specs

| Property | Value | | ------------ | ---------------- | | Machine name | ds-feature-card | | JavaScript | no | | SCSS | ./src/index.scss |

Project installation

The instructions assume familiarity with npm package management tool and Sass.

  1. Include SCSS in your compiler.
  2. Add the sample markup from the component to your HTML.
  3. Modify with your own text, alt text, and image.

CDN installation

We recommend using a build system and bundling your CSS for faster performance. If you do not use a build system, you can include the code from our CDN with a link tag.

<link rel="stylesheet" href="https://cdn.designsystem.webstandards.ca.gov/components/ds-feature-card/v2.0.1/dist/index.css">

CSS variables

The following CSS variables are used in this component:

  • --s-1
  • --s-2
  • --s-2
  • --s-5
  • --white
  • --gray-100
  • --primary-700
  • --accent2-500
  • --font-size-2
  • --font-weight-6
  • --font-lineheight-3
  • --radius-2
  • --border-1
  • --border-2

All CSS variables define their own fallback value so you do not have to use additional CSS unless you want to change them. You may define your own value for the variable by adding your own style rules. Here is an example defining the global hex value for a CSS variable named “--primary-700”:

:root {
  --primary-700: #165ac2;
}

Accessibility

Component-specific accessibility review

  • Make sure that feature card image has alt attribute with text describing the image.
  • Make sure that feature card CTA link button has solid, 2px outline that uses --accent2-500 variable on focused state.

Standard accessibility review

As a component in Alpha status, this component must pass the following accessibility reviews every time a new version is published:

  • Tested with the axe accessibility tool and passes all automated WCAG Level AA checks
  • Reviewed with the VoiceOver screen reader on desktop
  • Verified keyboard navigation and that all actionable elements of the component are reachable via keyboard commands only
  • Reviewed component layout on a variety of screen sizes

Progressive enhancement

This is an HTML- and CSS-only component. JavaScript is not required. It uses CSS variables to inherit design token values. Token definitions are not required because these style rules provide fallback values.

Content model

This component uses the following data attributes. We provide this information to help with integrating the component into backend publishing systems or identifying content that may require translation.

| Name | Attribute name | Data type | Field type | Selector | Additional info | | ------------- | -------------- | --------- | ---------- | ----------------------------- | ----------------------------------------------------- | | Title | title | string | Plain text | h2 | | | Description | body | string | Plain text | p | | | Image | mediaURL | string | Plain text | img.cagov-featured-image[src] | 750x500 pixel maximum width and height are supported. | | Image caption | mediaAlt | string | Plain text | img.cagov-featured-image[alt] | | | Button label | buttontext | string | Plain text | a | | | Button url | buttonurl | string | Plain text | .wp-block-button a[href] | |

Contributor/developer documentation