Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

plcc-table

Package Overview
Dependencies
Maintainers
4
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

plcc-table

Plcc table element for PatternFly Elements

latest
npmnpm
Version
0.0.15
Version published
Weekly downloads
2.4K
-12.9%
Maintainers
4
Weekly downloads
 
Created
Source

Plcc table Element

Product lifecycle table web component.

Usage

Describe how best to use this web component along with best practices.

<plcc-table>
</plcc-table>

Accessibility

Explain how this component meets accessibility standards.

Slots

This component does not make use of a slot

Attributes

product-name

Use this attribute when fetching data from the api. Pass the product name as the value for the api's path to use.

<plcc-table product-name="Red Hat Enterprise Linux"></plcc-table>

hide-eol

When this attribute is present, the End of Life table will be hidden

<plcc-table product-name="Red Hat Enterprise Linux" hide-eol></plcc-table>

Compact styles

To enable compact styles add a class of 'compact' to the <plcc-table> tag

<plcc-table product-name="Red Hat Enterprise Linux" class="compact"></plcc-table>

Passing data to plcc-table

Here's a basic example on now to pass data to the component. This data must match the structure provided by the api in order for the component to render properly.

<plcc-table id="someId" type="app"></plcc-table>

<script>
    const data = {someObject};

    const plccExampleTable = document.querySelector("#someId");
    plccExampleTable.tableData = data;
</script>

Please see the demo file in this repo for additional detail

Dependencies

Make sure you have [Web Component Tester][web-component-tester] installed when writing tests.

npm install -g web-component-tester

Dev

npm start

Test

npm run test

Build

npm run build

Keywords

web-components

FAQs

Package last updated on 30 Jul 2020

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