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

@valle/valle-table

v1.0.1

Published

Awesome valle-table - web component using Polymer 3

Downloads

6

Readme

valle-table

Awesome valle-table - web component using Polymer 3

npm Published on webcomponents.org

How to install and use:

1 - Install the element using Yarn:

$ yarn add @valle/valle-table

2 - Import the element:

<script type="module" src="node_modules/@valle/valle-table/main.js"></script>

or in your javascript file

import "@valle/valle-table/main.js";

3 - Start using it!

<valle-table>

  <valle-thead>

    <valle-tr>
      <valle-th> Value </valle-th>
      <valle-th> Size </valle-th>
    </valle-tr>

  </valle-thead>

  <valle-tbody>

    <valle-tr>
      <valle-td> 12cm </valle-td>
      <valle-td> 15kg </valle-td>
    </valle-tr>

    <valle-tr>
      <valle-td> 13cm </valle-td>
      <valle-td> 10kg </valle-td>
    </valle-tr>

  </valle-tbody>

  <valle-tfooter>

    <valle-tr>
      <valle-th> Value </valle-th>
      <valle-th> Size </valle-th>
    </valle-tr>

  </valle-tfooter>

</valle-table>

Components

valle-table

The custom <valle-table> element represents tabular data — that is, information expressed via a two-dimensional data table.

Properties

Property | Type | Default | Description :--- |:--- |:--- |:--- label | String | "" | table label (Other element ID)

See more about original table element here.

valle-thead

The custom <valle-thead> element defines a set of rows defining the head of the columns of the table.

Properties

Property | Type | Default | Description :--- |:--- |:--- |:--- ----- | ----- | ----- | -----

See more about original thead element here.

valle-th

The custom <valle-th> element defines a cell as header of a group of table cells. The exact nature of this group is defined by the scope and headers attributes.

Properties

Property | Type | Default | Description :--- |:--- |:--- |:--- ----- | ----- | ----- | -----

Styling

The following custom properties and mixins are available for styling:

Custom property | Default | Description :--- |:--- |:--- --valle-th-text-size | 13px | Font size --valle-th-text-color | rgba(0,0,0,.54)| Text color

See more about original th element here.

valle-tbody

The custom <valle-tbody> element groups one or more <valle-tr> elements as the body of a <valle-table> element.

Properties

Property | Type | Default | Description :--- |:--- |:--- |:--- ----- | ----- | ----- | -----

See more about original tbody element here.

valle-tr

The custom <valle-tr> element defines a row of cells in a table. Those can be a mix of <valle-td> and <valle-th> elements.

Properties

Property | Type | Default | Description :--- |:--- |:--- |:--- ----- | ----- | ----- | -----

See more about original tr element here.

valle-td

The custom <valle-td> element defines a cell of a table that contains data. It participates in the table model.

Properties

Property | Type | Default | Description :--- |:--- |:--- |:--- label | String | "" | td label (Thead ID)

Styling

The following custom properties and mixins are available for styling:

Custom property | Default | Description :--- |:--- |:--- --valle-td-text-size | 13px | Font size --valle-td-text-color | rgba(0,0,0,.54)| Text color

See more about original th element here.

valle-tfooter

The custom <valle-tfooter> element defines a set of rows summarizing the columns of the table.

Properties

Property | Type | Default | Description :--- |:--- |:--- |:--- ----- | ----- | ----- | -----

See more about original tfoot element here.

Browser Support

Using the webcomponents.js:

Chrome | Opera | Firefox | Safari |IE | Edge | :---: | :---: | :---: | :---: | :---: | :---: | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | 11+ | Latest ✔

Development

1 - Verify if you have node and yarn installed.

2 - Install Polymer-CLI:

$ [sudo] yarn global add polymer-cli

3 - Install local dependencies:

$ yarn

4 - Start the development server:

$ yarn start

Versioning

To keep better organization of releases we follow the Semantic Versioning 2.0.0 guidelines.

Contributing

Find on our issues the next steps of the project ;) Want to contribute? Follow these recommendations.

History

See Releases for detailed changelog.

License

MIT License © valleweb