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

@conveyorhq/arrow-ds

v1.154.0

Published

Arrow Design System

Downloads

611

Readme

Arrow Design System

React Design System for Conveyor products

Using Arrow UI

Storybook for latest stable release. We don’t publish storybook for alpha or beta builds.

yarn add @conveyorhq/arrow-ds

Contributing to Arrow Design System

Developing locally

Setting the correct Node version

Arrow uses an .nvmrc config file to use the latest LTS version. To install the latest LTS version, run nvm install --lts and then nvm use.

If you’re not using NVM, it’s highly recommended. See (Installing and Updating)[https://github.com/nvm-sh/nvm#installing-and-updating] in the NVM docs.

Installing dependencies and running Storybook

yarn
yarn run storybook

Linking to comply-ui (or any other repo) locally

Install yalc globally:

yarn global add yalc

In this repo:

yalc publish

In the consuming repo:

yalc add @conveyorhq/arrow-ds
yarn

Note: This will change the consuming repo’s package.json (replacing @conveyorhq/arrow-ds’s version number with a local path). Make sure you revert that before committing!

Generating a new component

This project uses Plop to make it easy to generate new components.

  1. Run yarn generate or yarn generate <component name>
  2. Follow the prompt and give the component a name; the plopfile will convert the name to Pascal case
  3. The component will be created in packages/components/

Adding a new component

  1. Add the component’s export to the root index.ts
  2. If the component has its own stylesheet, add it to src/css/components.css.

Writing CSS

Arrow uses Tailwind v2 to compose styles for components. At the moment, we are using the PostCSS 7 compatibility build since Storybook has not yet upgraded to PostCSS 8. Once they do, we can switch to the latest tailwindcss v2 release on npm (2.0.1 as of this writing).

In many cases, each component should have their own index.css file. The naming convention follows SUIT CSS using the ads prefix.

ads-ComponentName
ads-ComponentName--modifierName
ads-ComponentName-descendentName
ads-ComponentName.is-stateOfComponent

Writing documentation

Documentation is written in MDX which is a combination of Markdown + JSX.

Each MDX file must end with .story.mdx for it to be picked up by storybook.

All documentation exists within the src directory of this repo. If it applies to the design system as a whole, it should live in the src/docs directory. Component documentation is included inside each component directory.

Each MDX file should start with importing the Meta component and passing a title to it:

import { Meta } from "@storybook/blocks";

<Meta title="Arrow Design System/Introduction" />

### [ write markdown here ]

In this example, we’re creating a new page called “Intro” that will be organized into the “Arrow Design System” section in the storybook sidebar.

Check out MDX files in src/docs or component directories for more examples.

For designers (or anyone else who isn’t super familiar with git)

The easiest way to make changes to documentation is through the GitHub interface. Just navigate to the MDX file you’d like to change and click the pencil icon in the top right. After making your changes, you’ll be prompted to open a pull request that will be reviewed by UXE. To create a brand new MDX file, just navigate (again, in GitHub) to the directory you want it to live and click the “Create new file” button in the top right.

If you’d prefer to create a fork and run Storybook locally, there are instructions on the wiki.

Publishing @conveyorhq/arrow-ds (npm)

New releases of Arrow Design System are triggered automatically by semantic-release. It uses the commit messages to determine the type of changes in the codebase. Following formalized conventions for commit messages, semantic-release automatically determines the next semantic version number, generates a changelog and publishes the release.

Note: No version number is committed to package.json. Instead, semantic-release adds it automatically before publishing to npm.

Arrow Design System uses commitlint to enforce conventional commits. Attempting to make a commit with a message that doesn’t adhere to that format will result in an error. Use yarn commit to run commitizen which will help format your commit message.

Here is an example of the release type that will be done based on a commit messages:

| Commit message | Release type | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- | | fix(pencil): stop graphite breaking when too much pressure applied | Patch Release | | feat(pencil): add 'graphiteWidth' option | ~~Minor~~ Feature Release | | perf(pencil): remove graphiteWidth optionBREAKING CHANGE: The graphiteWidth option has been removed.The default graphite width of 10mm is always used for performance reasons. | ~~Major~~ Breaking Release |

Full list of commit types:

  • feat: A new feature
  • fix: A bug fix
  • docs: Documentation only changes
  • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
  • refactor: A code change that neither fixes a bug nor adds a feature
  • perf: A code change that improves performance
  • test: Adding missing or correcting existing tests
  • chore: Changes to the build process or auxiliary tools and libraries such as documentation generation

Alpha and beta releases

To make an alpha or beta release, you’ll need to merge your code to the alpha or beta branch. Semantic-release should take care of the rest.