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

@auth0/styleguide-react-components

v1.0.4

Published

Library of Auth0 React components.

Downloads

23

Readme

Auth0 Styleguide - React Components

Library of Auth0 React components. All the react-bootstrap components are re-exported inside this lib.

You can find the API, see examples, and play with live editing of every component on the React Components section of our styleguide.

Installation 📦

If you are using npm you can do (react and react-bootstrap are peer dependencies):

npm i --save react@15 [email protected] @auth0/styleguide-react-components

And load the CSS from our CDN:

<!-- Core and Components CSS bundles are peer dependencies of react-components -->
<link rel="stylesheet" href="https://cdn.auth0.com/styleguide/core/2.0.5/core.min.css" />
<link rel="stylesheet" href="https://cdn.auth0.com/styleguide/components/2.0.0/components.min.css" />

<link rel="stylesheet" href="https://cdn.auth0.com/styleguide/react-components/1.0.2/react-components.css" />

The CSS bundles are also included on the packages installed via npm, but we encourage you to use it via our CDN so we all benefit from sharing the same url of the package to improve load time.

Usage

Here is a quick example to get you started:

import React from 'react';
import ReactDOM from 'react-dom';
import { Button } from '@auth0/styleguide-react-components';

const App = () => (
  <div>
    <Button>+1</Button>
  </div>
);

ReactDOM.render(
  <App />,
  document.getElementById('app')
);

Development 🛠

Add a new component

Node.js v6.9.1 and npm v3.10.8 or newer is required.

You can develop new components using React StoryBook.

The index.js and examples.js files will be used to generate the React Styleguide page of the component, which will contain all the documentation for it (title, description, examples and table with properties information).

To create a new component run npm start and add your component inside the /src folder with the following files:

index.js

Main component file, it should export the component.

We use react-docgen to extract information from this file to generate the documentation of our components. You should use the following structure:

import React from 'react';
import PropTypes from 'prop-types';

/**
 * Example component title: Example component description.
 */
const ExampleComponent = ({ prop1, prop2 }) => (
	<div>Example component</div>
);

ExampleComponent.propTypes = {
  /**
   * prop1 description
   */
  prop1: PropTypes.array.isRequired,
  /**
   * prop2 description
   */
  prop2: PropTypes.number.isRequired
};

export default ExampleComponent;

This file will generate the following page in the React Styleguide website:

The comment on top of the component definition will match with the page title and description, while the comments on top of the propTypes definitions will match with the definitions of the properties table.

examples.js

Export an array of objects representing the different examples of the component to showcase them in the Auth0 React Styleguide.

Each object of the array can have the following properties:

| Property | Type | Description | |:---|:---|:---| |component|React element|React element| |code|string|Code of the component (should match the code of the component property) |center|boolean|Center the component in the middle of the playground |title|string|Example title |showTitle|boolean|Show the example title |url|string| Url for the component page

Example file:

import React from 'react';
import ExampleComponent from './';

const examples = [
  {
    component: (
      <ExampleComponent />
    ),
    code: `<ExampleComponent />`,
    title: 'Example title',
    center: true,
    showTitle: true,
    url: 'default'
  }
];

export default examples;

index.test.js

Test your component using mocha, chai and enzyme.

index.stories.js

Add stories for your React component. You can check React StoryBook - Writing Stories for more information.

Components style

Follow this conventions when you are developing components:

  • Your components should be stateless functional components (they shouldn't contain state or lifecycle methods so we can use them with state management libraries like Redux).
  • Add propTypes for all properties and add the proper comments so that information is shown in the Auth0 React Styleguide.
  • Prefix your component css classes with its name so it doesn't conflict with others existing classes.

Releasing a new version

Run the command bin/version <patch|minor|major|version-no> inside the root of this package. This will commit a new version for you.

Example

bin/version patch

License

All the logos and branding are copyright Auth0 and may not be used or reproduced without explicit permission from Auth0 Inc.

The icons are licensed from Budi Harto Tanrim. All other third-party components are subject to their own licenses.