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

dummy_frontend

v1.1.0

Published

React components library project for censa Design System

Downloads

70

Readme

Censa Design System (MDS) is an open-source design system built at censa. This is a simple and customizable component library to build faster, beautiful, and more accessible React applications on the guidelines and principles of Censa Design System.

codecov GitHub GitHub top language Snyk Vulnerabilities for GitHub Repo

🚀 Get Up and Running

To install censa_front_end_library in your project, you will need to run the following command using npm:

npm install censa_front_end_library

Adding style:

Import style at your app's root, it is not included in library bundle and shipped as a single css file. For more details see our styling section

import 'censa_front_end_library/css';

If you want to try out censa_front_end_library, you can also use CodeSandbox.

Edit censa_front_end_library

Usage

import { Button } from 'censa_front_end_library';
const App = () => {
  return <Button>Done</Button>;
};

For more information about each component, check out our Storybook. Check out our Tutorial to guide you in creating an awesome app.

CDN

If you prefer to include library globally by marking it as external in your application, library provides various single-file distributions, which can be used as following:

<!-- style -->
<link href="https://unpkg.com/[email protected]/css/dist/index.css" rel="stylesheet" />

Styling

As this component library is part of a framework-agnostic design system used at censa the styling is done with CSS using CSS variables for theming and BEM methodology for reusable and modular styling. So it requires you to include CSS in your project by either importing or serving it as a static file. The complete stylesheet is published as part of the component library at path censa_front_end_library/css. You can include css by importing it or loading it from cdn.

👉 Using Font

The css sets the font family as 'Inter' for the body. To add this font in your project you need to load this font. The recommended way to do it is by adding the following google font cdn link to your app's head.

<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">

👉 Updating Font:

If you don't add the font described above font family will not be affected by css. However, if you want to update the font family update it via the following css variable.

--font-family

👉 Reset Styles

As BEM is used reset.css is not used and no style reset is done.

👉 Polyfill for IE

For css variables to work on IE we use a polyfill at runtime to achieve dynamic theming through variables. Please add the following polyfill in your page.

<script src="https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2"></script>
<script>
  cssVars({
    onlyLegacy: true,
  });
</script>