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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@public-ui/theme-desy

v4.1.4

Published

Contains the desy theme for KoliBri - The accessible HTML-Standard.

Readme

(keine Änderung, nur Formatierung falls nötig)

Public UI – Desy Theme

npm license downloads issues pull requests size contributors

Das Zoll Design System (Desy) ist der öffentliche Styleguide der Generalzolldirektion (Zoll). Dieses Paket stellt zum Styleguide passende Theme für die Public UI Web Component Library versioniert bereit.

Hinweis: Das Design System wird permanent weiterentwickelt und dieses Theme wird in regelmäßigen Abständen auf eine vereinbarte neuerere Version aktualisiert. Es kann daher vorkommen, dass das Theme nicht immer 100% mit der aktuellsten Version des Design Systems übereinstimmt. Aktuell ist das Theme auf die Version 11 des Design Systems abgestimmt.

Installation & Integration

npm install @public-ui/components @public-ui/theme-desy

React-Beispiel:

import { register } from '@public-ui/components';
import { defineCustomElements } from '@public-ui/components/loader';
import { DesyV11 } from '@public-ui/theme-desy';

register(DesyV11, defineCustomElements).then(() => {
	ReactDOM.createRoot(document.getElementById('root')).render(
		<React.StrictMode>
			<KolButton _label="Klick mich!" />
		</React.StrictMode>,
	);
});

Weitere Details: Getting started

Beitrag zum Theme (Contribution)

Du möchtest das Desy-Theme verbessern oder anpassen? So gehst du vor:

  1. pnpm installieren

    • pnpm wird für die Entwicklung benötigt. Installiere pnpm global, falls noch nicht vorhanden:

      npm install -g pnpm
  2. Repository forken

    • Klicke auf Fork auf GitHub und erstelle deinen eigenen Fork.
  3. Lokales Setup

    • Klone deinen Fork:

      git clone https://github.com/<DEIN_GITHUB_USER>/kolibri.git
      cd kolibri/lib/packages/themes/desy
    • Installiere die Abhängigkeiten im Monorepo-Hauptverzeichnis:

      pnpm i
      pnpm build
  4. Entwicklung starten

    • Wechsle ins Theme-Verzeichnis und starte den Watch-Modus:

      cd kolibri/lib/packages/themes/desy
      pnpm start
    • Passe die Dateien in src/ nach deinen Wünschen an.

  5. Commit & Pull Request

    • Committe deine Änderungen und pushe sie in deinen Fork:

      git add .
      git commit -m "feat(theme-desy): <deine Änderung>"
      git push origin <dein-branch>
    • Erstelle einen Pull Request auf https://github.com/public-ui/kolibri/compare

Hinweise:

  • Bitte halte dich an die Contributing Guidelines.
  • Vor dem Commit immer pnpm format und pnpm lint ausführen.
  • Für größere Änderungen gerne vorab ein Issue eröffnen.

Weitere Informationen