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 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-dkfds

v1.0.0

Published

React-based DKFDS components

Readme

React DKFDS

A React component library based on Det Fælles Designsystem (DKFDS) This library provides React components implemented by following the guidelines for each component. Components currently have hard-coded danish labels, which may be customisable in the future

Demo

A demo of the components in Storybook is available here

Installation

Dependencies

Install the dependency, plus peer dependencies:

npm i dkfds react-dkfds

DKFDS

This library assumes the DKFDS styling is present in the document. Add the DKFDS CSS to your application from node_modules/dkfds/dist/css/dkfds.css" />

Icons

This library assumes the DKFDS SVG sprite sheet is available in the document. Insert the SVG-code into the DOM from node_modules/dkfds/dist/img/all-svg-icons.svg.

Translations

Labels are Danish by default, in accordance with the official examples. To add custom label translations, create your own translation-function and pass it to the TranslationProvider

// myTranslations.ts
import type { TranslationMap } from "react-dkfds";

export const translations: TranslationMap = {
  accordion_open_all: "Open all",
  accordion_close_all: "Close all",
  input_field_characters_left: ({ charactersLeft }) =>
    `You have ${charactersLeft} characters remaining`,
};
// App.tsx
import { DkfdsTranslationProvider } from "react-dkfds";
import { translations } from "./myTranslations";

export default function App() {
  return (
    <DkfdsTranslationProvider translations={translations}>
      <App />
    </DkfdsTranslationProvider>
  );
}

Any translation not provided, or any function returning undefined, will make the component fall back to the original text. To render no text, return an empty string. You may also wrap individual components in a DkfdsTranslationProvider to change specific elements' default texts.

Components

The library contains almost every component listed on Det Fælles Designsystem. Every component has been tested by implementing each code example for every component, which can be seen in the storybook project. Do not hesitate to create a pull request to expose more props or propose restructuring the props of a component

Storybook

The Storybook project can be seen by checking out this repository and running the following command:

npm run storybook

These can also be used for reference when implementing your own features with these components.

Missing components

If you notice any components missing, please create an issue or submit a pull request

Roadmap

The following is a prioritised list of features to be implemented in this library.

  • Customising Storybook site with better documentation
  • Automated testing of component functionality