0.17.3 • Published 8 months ago

@justeattakeaway/pie-tag v0.17.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
8 months ago

@justeattakeaway/pie-tag

Source Code | Design Documentation | NPM

@justeattakeaway/pie-tag is a Web Component built using the Lit library. It offers a simple and accessible interactive tag 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

PropOptionsDescriptionDefault
size"small", "large"Sets the size of the tag."large"
variant"neutral", "neutral-alternative", "outline", "ghost", "information", "success", "error", "brand-02", "brand-03", "brand-04", "brand-05", "brand-06"Sets the variant of the tag."neutral"
isStrongtrue, falseIf true, displays strong tag styles for "success", "error", "information", "neutral" and "brand-05" variants. Has no effect for other variants.false
isInteractivetrue, falseWhen true, the tag will be rendered as a button and can be interacted with. When utilized in "icon only" mode, isInteractive will always be false regardless of the assigned prop value.false
disabledtrue, falseFor an interactive tag, this applies the disabled attribute to the button and styles it appropriately. For a non-interactive tag, this only applies the disabled styling.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. Only used if isInteractive is true."leading"

Slots

SlotDescription
defaultThe default slot is used to pass text into the tag component.
iconUsed to pass in an icon to the tag component.

CSS Variables

This component does not expose any CSS variables for style overrides.

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/tag.js'
import '@justeattakeaway/pie-icons-webc/dist/IconPlaceholder.js';
<!-- pass js file into <script> tag -->
<pie-tag>
  Label
  <icon-placeholder slot="icon"></icon-placeholder>
</pie-tag>
<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/tag.js'
import '@justeattakeaway/pie-icons-webc/dist/IconPlaceholder.js';

<pie-tag>
  Label
  <icon-placeholder slot="icon"></icon-placeholder>
</pie-tag>

For React Applications:

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

<PieTag>
  Label
  <IconPlaceholder slot="icon"></IconPlaceholder>
</PieTag>

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.

0.17.2

8 months ago

0.17.3

8 months ago

0.13.0

12 months ago

0.17.0

8 months ago

0.17.1

8 months ago

0.14.0

11 months ago

0.14.1

11 months ago

0.11.1

1 year ago

0.15.0

11 months ago

0.12.0

1 year ago

0.16.0

10 months ago

0.16.1

10 months ago

0.11.0

1 year ago

0.10.1

1 year ago

0.10.2

1 year ago

0.9.10

1 year ago

0.10.0

1 year ago

0.9.8

2 years ago

0.9.7

2 years ago

0.9.9

1 year ago

0.9.6

2 years ago

0.9.5

2 years ago

0.9.4

2 years ago

0.9.3

2 years ago

0.9.2

2 years ago

0.9.1

2 years ago

0.9.0

2 years ago

0.8.1

2 years ago

0.8.0

2 years ago

0.7.1

2 years ago

0.6.2

2 years ago

0.7.0

2 years ago

0.6.1

2 years ago

0.6.0

2 years ago

0.5.0

2 years ago

0.4.1

2 years ago

0.4.0

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.0

2 years ago