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

@govie-ds/react

v0.31.0

Published

The GOV IE design system React components.

Downloads

17,019

Readme

govie-react

This library should only be imported for departments actively working with the core design system team during its development. Do not use this library if you are not part of this development process, and contact the design system team instead if you interested in its use.

Welcome to the GOV IE React component library, a collection of reusable React components designed to help you build modern React web applications utilising the GOV IE design system.

Status: Alpha

Important Note: This library is currently in the alpha stage. As we continue to develop and improve the components, frequent breaking changes are to be expected. We appreciate your understanding and patience as we work towards a stable version 1.0.

Getting Started

To install the library, use the following command:

npm install @govie-ds/react @govie-ds/theme-govie

Pinning packages

We strongly recommend that you pin the GOV IE design system packages, so that any regressions are not automatically introduced during development. Regressions that will only be discoverable at runtime.

Upgrades should be explicit version updates in the package.json and then your application should be regression tested:

"dependencies": {
-  "@govie-ds/theme-govie": "^0.1.2",
+  "@govie-ds/theme-govie": "0.1.2",
-  "@govie-ds/react": "^0.1.6",
+  "@govie-ds/react": "0.1.6"

Usage

Import the GOV IE theme.css from the @govie-ds/theme-govie theme package at the entry point of your application, for example:

+import '@govie-ds/theme-govie/theme.css'

export function App() {
  return (
    ...
  );
}

Note that you should typically run some form of CSS reset or normalisation of styles as part of your application entry point, depending on your application styling solution. For example Tailwind includes preflight, an optinionated set of base styles.

Use components within your application from the @govie-ds/react component package:

import { Header } from '@govie-ds/react';

export function MyComponent() {
  return (
    <>
      <Header serviceName="My Service" />
    </>
  );
}

Typography

The @govie-ds/react package contains Heading and Paragraph components that implement the GOV IE design system responsive text guidelines:

import { Heading, Paragraph } from '@govie-ds/react';

function MyComponent() {
  return (
    <>
      <Heading>Heading</Heading>
      <Paragraph>This is a paragraph</Paragraph>
    </>
  );
}

The GOV IE design system uses the Lato Google font. The font should be added to your application, e.g. via next/font, Fontsource or embed code.

Contribution

We welcome contributions! If you have suggestions for improvements, please feel free to open an issue or submit a pull request.

Feedback

Your feedback is invaluable to us. Please share your thoughts and experiences to help us make this library better.

Roadmap

  • Alpha: Frequent updates with breaking changes.
  • Beta: Stabilizing the API and focusing on bug fixes.
  • 1.0: Stable release with a solid API.