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

@justeattakeaway/pie-card-container

v0.13.0

Published

PIE Design System Card Container built using Web Components

Downloads

51

Readme

Table of Contents

  1. Introduction
  2. Installation
  3. Importing the component
  4. Peer Dependencies
  5. Props
  6. Contributing

pie-card-container

pie-card-container is a Web Component built using the Lit library.

This component can be easily integrated into various frontend frameworks and customized through a set of properties.

Installation

To install pie-card-container in your application, run the following on your command line:

# npm
$ npm i @justeattakeaway/pie-card-container

# yarn
$ yarn add @justeattakeaway/pie-card-container

For full information on using PIE components as part of an application, check out the Getting Started Guide.

Importing the component

// default
import { PieCardContainer } from '@justeattakeaway/pie-card-container';

// react
import { PieCardContainer } from '@justeattakeaway/pie-card-container/dist/react';

Peer Dependencies

[!IMPORTANT] When using pie-card-container, you will also need to include a couple of dependencies to ensure the component renders as expected. See the PIE Wiki for more information and how to include these in your application.

Props

| Property | Type | Default | Description | |---|---|-------------|------------------------------------------------------------------------------------------------------------------------------| | tag | String | button | What HTML element the card should be such as a or button | variant | string | default | What style variant the card should be such as default, outline, inverse or outline-inverse | | disabled | boolean | false | When true, the card container is disabled. | | href | string | undefined | The URL that the card should point to (this will not take effect unless the card is a link). | | target | string | undefined | Where to display the linked URL such as _self, _blank, _parent or _top (this will not take effect unless the card is a link). | | rel | string | undefined | What the relationship of the linked URL is (this will not take effect unless the card is a link). | | aria | object | undefined | The ARIA labels used for various parts of the card. | | isDraggable | boolean | false | Sets a grab/grabbing cursor when set to true. Note: the actual dragging capabilities should be implemented by the consuming application. | | padding | String | undefined | Sets the padding of the card container. Can be either a single value or two values separated by commas. Setting a single value adds padding to all sides of the card, whereas setting two values will set the "topBottom, leftRight" padding. e.g 'a' or 'a, b' |

In your markup or JSX, you can then use these to set the properties for the pie-card-container component:

<!-- Native HTML -->
<pie-card-container disabled href="/foo/bar" rel="noopener" target="_blank"></pie-card-container>

<!-- JSX -->
<PieCardContainer disabled href="/foo/bar" rel="noopener" target="_blank"></PieCardContainer>

Contributing

Check out our contributing guide for more information on local development and how to run specific component tests.