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

@utrecht/component-library-react

v7.3.3

Published

React component library bundle for the Municipality of Utrecht based on the NL Design System architecture

Downloads

23,365

Readme

Component library voor React

Je kunt de React componenten van de @utrecht/component-library-react npm package gebruiken voor je eigen website. Het zijn "white label" componenten, dat betekent dat ze niet de Utrecht huisstijl hebben — je kunt je eigen ontwerp gebruiken met design tokens.

Je kunt deze package gebruiken in React apps, zowel client side als server side, om de juiste HTML elementen te renderen met CSS class names van het Utrecht Design System.

Documentation staat in de Storybook voor Utrecht React componenten.

Aan de slag

npm install --save-dev --save-exact @utrecht/component-library-react

Wanneer je dit pakketje hebt geïnstalleerd, dan kun je elke component uit de React component gebruiken voor je pagina. Bijvoorbeeld:

import { Document, Heading1 } from "@utrecht/component-library-react/dist/css-module";

export const MyPage = () => (
  <div className="voorbeeld-theme">
    <Document>
      <Heading1>Page styled with NL Design System</Heading1>
    </Document>
  </div>
);

Als je geen CSS injection wilt, dan kun je dezelfde componenten importeren uit een andere plek (zonder /dist/css-module). CSS injection levert soms problemen op bij websites met een stricte Content-Security-Policy.

import { Document, Heading1 } from "@utrecht/component-library-react";

export const MyPage = () => (
  <div className="voorbeeld-theme">
    <Document>
      <Heading1>Page styled with NL Design System</Heading1>
    </Document>
  </div>
);

Design toevoegen met een thema

Gebruik je eigen design met de volgende stappen:

  1. Maak een eigen thema op basis van design tokens.
  2. Laad de CSS van je thema in. Daarin zitten de CSS variables voor het ontwerp van de componenten.
  3. Voeg in HTML de CSS class name toe van je theme, op het niveau boven je componenten.

Utrecht huisstijl toevoegen

Installeer de npm package met de CSS:

npm install --save-dev @utrecht/design-tokens

In veel React projecten is het mogelijk de CSS te importeren in JavaScript. Voeg de import voor de thema CSS toe, en gebruik de utrecht-theme class name op een niveau boven de React componenten.

import { Document, Heading1 } from "@utrecht/component-library-react";
import "@utrecht/design-tokens/dist/index.css";

export const MyPage = () => (
  <div className="utrecht-theme">
    <Document>
      <Heading1>Page styled with NL Design System</Heading1>
    </Document>
  </div>
);

TypeScript

De TypeScript declarations voor de React componenten worden standaard meegeleverd.

Support

Stel je support-vragen in het #nl-design-system-developers Slack-kanaal.