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

pgd-ui-components-library

v0.0.20

Published

PGD UI Components Library

Downloads

5

Readme

UI Components Library

Reusable component library for PGD and IdeaLab projects

Recommendations

  • Use Node 16 for Development

    Note: Later versions may not work properly

Initial setup

  • Install dependencies with npm install
  • Build the project npm run build
  • This step is necessary in order to make any global stylesheet available while working on your components
  • Run the development server npm run storybook

New component setup

  • Run the command npx stencil generate your-component-name
  • Remember to change your-component-name for the actual component name
  • If it's supposed to be in a subfolder, you can add it with a relative path. For example: parent-folder/your-component-name
  • Go to components folder and open the folder with the name of your component
  • Change the stylesheet file extension from .css to .scss
  • Open your component .tsx file
  • Look for the styleUrl key in the object passed to the @Component() decorator and change the file extension from .css to .scss
  • Save and start working on your new component

Add your files

cd existing_repo
git remote add origin https://gitlab.prodigious.com/Prodigious/ui-components-library.git
git branch -M main
git push -uf origin main

Integrate with your tools

Collaborate with your team

Test and Deploy

Use the built-in continuous integration in GitLab.