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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@justeattakeaway/pie-link

v1.3.5

Published

PIE Design System Link built using Web Components

Readme

@justeattakeaway/pie-link

Source Code | Design Documentation | NPM

@justeattakeaway/pie-link is a Web Component built using the Lit library. It offers a simple and accessible link component for web applications.

Table of Contents

Installation

To install any of our web components in your application, we would suggest following the getting started guide to set up your project.

Ideally, you should install the component using the @justeattakeaway/pie-webc package, which includes all of the components. Or you can install the individual component package.

Documentation

Properties

| Prop | Options | Description | Default | |----------------|----------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------| | size | "small", "medium" | Sets the size of the link. | "medium" | | variant | "default", "high-visibility", "inverse" | Sets the variant of the link. | "default" | | tag | "a", "button" | Which HTML tag to use for the link. | "a" | | href | — | The href attribute to apply.Cannot be used if tag is set to "button". | undefined | | target | — | The target attribute to apply.Cannot be used if tag is set to "button". | undefined | | download | string | Sets the download attribute to trigger file downloads. Pass an empty string "" to enable download with the original filename, or provide a custom filename. Only available when tag is a. Use same origin URLs and point to the file using the href property. | undefined | | rel | — | The rel attribute to apply.Cannot be used if tag is set to "button". | undefined | | type | "button", "reset", "submit" | The type attribute to apply when tag is set to "button". | "submit" | | underline | "default", "reversed" | The underline behaviour of the link. The default behaviour has the link text underlined, with the underline disappearing on hover. "reversed" will only take effect if isStandalone is set to true. | "default" | | isBold | true, false | If true, makes the link text bold. | false | | isStandalone | true, false | If true, sets the link as a block element. | false | | hasVisited | true, false | If true, the link will apply the styles for the visited state. Only takes effect if tag is "a". | false | | iconPlacement| "leading", "trailing" | Sets the position of the icon relative to the text. Leading comes before the text and trailing comes after, taking writing direction into account. To use this, you must pass an icon into the icon slot. Will have no effect if isStandalone is false. | undefined | | aria | { label?: string } | Aria properties for the link to help with making it accessible. | undefined |

Slots

| Slot | Description | |-----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | default | The default slot is used to pass text into the link component. | | icon | Used to pass in an icon to the link component. The icon placement can be controlled via the iconPlacement prop and we recommend using pie-icons-webc for defining this icon. Please note the icon size is hardcoded and cannot be overridden. |

CSS Variables

| Name | Description | |--------------------------|---------------------------------------------| | --link-font-weight | Controls the font weight of the link text. | | --link-text-color | Controls the color of the link text. | | --link-text-decoration | Controls the text decoration of the link. |

Events

This component does not emit any custom events. In order to add event listening to this component, you can treat it like a native HTML element in your application.

Usage Examples

When using icons, we recommend using @justeattakeaway/pie-icons-webc to ensure consistency with the rest of the design system.

For HTML:

// import as module into a js file e.g. main.js
import '@justeattakeaway/pie-webc/components/link.js'
import '@justeattakeaway/pie-icons-webc/dist/IconPlaceholder.js';
<!-- pass js file into <script> tag -->
<pie-link href="https://www.pie.design">
  <icon-placeholder slot="icon"></icon-placeholder>
  pie.design
</pie-link>
<script type="module" src="/main.js"></script>

For Native JS Applications, Vue, Angular, Svelte etc.:

// Vue templates (using Nuxt 3)
import '@justeattakeaway/pie-webc/components/link.js';
import '@justeattakeaway/pie-icons-webc/dist/IconPlaceholder.js';

<pie-link href="https://www.pie.design">
  <icon-placeholder slot="icon"></icon-placeholder>
  pie.design
</pie-link>

For React Applications:

import { PieLink } from '@justeattakeaway/pie-webc/react/link.js';
import { IconPlaceholder } from '@justeattakeaway/pie-icons-webc/dist/react/IconPlaceholder.js';

<PieLink href="https://www.pie.design">
  <IconPlaceholder slot="icon" />
  pie.design
</PieLink>

Downloading files

Basic download (using original filename)

<pie-link
  tag="a"
  href="/path/to/file.pdf"
  download="">
  Download PDF
</pie-link>

Download with custom filename

<pie-link
  tag="a"
  href="/path/to/file.pdf"
  download="my-custom-name.pdf">
  Download PDF
</pie-link>

Questions and Support

If you work at Just Eat Takeaway.com, please contact us on #help-designsystem. Otherwise, please raise an issue on Github.

Contributing

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