Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@justeattakeaway/pie-card

Package Overview
Dependencies
Maintainers
12
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@justeattakeaway/pie-card

PIE Design System Card built using Web Components

  • 0.14.3
  • npm
  • Socket score

Version published
Weekly downloads
202
increased by60.32%
Maintainers
12
Weekly downloads
 
Created
Source

GitHub Workflow Status

Table of Contents

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

pie-card

pie-card 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 in your application, run the following on your command line:

# npm
$ npm i @justeattakeaway/pie-card

# yarn
$ yarn add @justeattakeaway/pie-card

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

Importing the component

JavaScript
// Default – for Native JS Applications, Vue, Angular, Svelte, etc.
import { PieCard } from '@justeattakeaway/pie-card';

// If you don't need to reference the imported object, you can simply
// import the module which registers the component as a custom element.
import '@justeattakeaway/pie-card';
React
// React
// For React, you will need to import our React-specific component build
// which wraps the web component using ​@lit/react
import { PieCard } from '@justeattakeaway/pie-card/dist/react';

[!NOTE] When using the React version of the component, please make sure to also include React as a peer dependency in your project.

Peer Dependencies

[!IMPORTANT] When using pie-card, 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

PropertyTypeDefaultDescription
tagStringbuttonWhat HTML element the card should be such as a or button
variantstringdefaultWhat style variant the card should be such as default, outline, inverse or outline-inverse
disabledbooleanfalseWhen true, the card is disabled.
hrefstringundefinedThe URL that the card should point to (this will not take effect unless the card is a link).
targetstringundefinedWhere to display the linked URL such as _self, _blank, _parent or _top (this will not take effect unless the card is a link).
relstringundefinedWhat the relationship of the linked URL is (this will not take effect unless the card is a link).
ariaobjectundefinedThe ARIA labels used for various parts of the card.
isDraggablebooleanfalseSets a grab/grabbing cursor when set to true. Note: the actual dragging capabilities should be implemented by the consuming application.
paddingStringundefinedSets the padding of the card. 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 component:

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

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

Contributing

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

FAQs

Package last updated on 23 Nov 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc