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

@betagouv/ngx-dsfr

v1.1.9

Published

This library aims to enable developers to use the [DSFR](https://gouvfr.atlassian.net/wiki/spaces/DB/overview?homepageId=145359476) in their Angular application 😊

Downloads

55

Readme

Ngx-DSFR

This library aims to enable developers to use the DSFR in their Angular application 😊

The DSFR is the official Design System to be used in any web app linked to the French πŸ‡«πŸ‡· government.

This project is built on top of the @gouvfr/dsfr package and currently uses the version 1.7.2.

How to update to a new version of the DSFR while working on this library ?

  1. Update the NPM package
    npm update @gouvfr/dsfr --save
  2. Copy / Paste all fonts into libs/ngx-dsfr/assets/fonts
  3. Copy / Paste all icons folders, from ~/@gouvfr/dsfr/dist/icons into libs/ngx-dsfr/assets/icons
  4. Copy / Paste all icons CSS definition files ( the .min version ), from ~/@gouvfr/dsfr/dist/utility/icons into each associated folder in libs/ngx-dsfr/assets/icons : for instance, put ~/@gouvfr/dsfr/dist/utility/icons/icons-buildings/icons-buildings.min.css into libs/ngx-dsfr/assets/icons/buildings
  5. Copy / Paste the content of the core styling file ~/@gouvfr/dsfr/dist/core/core.min.css into libs/ngx-dsfr/assets/styling/core-styling.css
  6. Rebuild the ngx-dsfr library
    nx build ngx-dsfr
  7. Re-establish a link between the new build of your library and this workspace, so that you can use it in the playground app
    npm link # Inside dist/libs/ngx-dsfr
    npm link @betagouv/ngx-dsfr # Inside the root of this workspace

How to use this library ?

Pre-requisites

First things first, in order to properly display anything provided by this library, you need to add to your app the required stylesheets.

  • If you're into an Angular CLI workspace, get into your angular.json file.
  • If you're into an Nx workspace, get into your project.json file.

Then add this:

"node_modules/@betagouv/ngx-dsfr/assets/styling/core-styling.css",
"node_modules/@betagouv/ngx-dsfr/assets/icons/system/icons-system.min.css",

into the styles property of your build target:

"targets": {
    "build": {
      "executor": "@angular-devkit/build-angular:browser",
      ...,
      "options": {
        ...,
        "styles": [
          ...,
          "node_modules/@betagouv/ngx-dsfr/assets/styling/core-styling.css",
          "node_modules/@betagouv/ngx-dsfr/assets/icons/system/icons-system.min.css",
          ...
        ],
        ...
      },

The Module system

Just like @angular/material, this library has secondary entry-points to make sure you don't need to take the whole project with you when you're bundling an app that relies on only a few parts of it.

For instance, maybe your app only needs the link and header modules and not the rest of the library. In that case, instead of having to embark with you the whole weight of ngx-dsfr, you just have to:

import { DsfrLinkModule } from '@betagouv/ngx-dsfr/link';
import { DsfrHeaderModule } from '@betagouv/ngx-dsfr/header';

And only the files enabling these features will be bundled into your built app πŸ˜ƒ

Please refer to the associated README file for each module in this project to get further details on how to use it πŸ˜‰

Icons

With the same goal to enable you to make your reliance on this library as lightweight as possible, you'll need to add a specific CSS file to your app's configuration for each icon category described in the DSFR's doc.

For instance, if you need to use the ancient-gate-fill icon, you'll first need to add

"node_modules/@betagouv/ngx-dsfr/assets/icons/buildings/icons-buildings.min.css"

to your angular.json or project.json, just like stated in the Pre-requisites section.

Available DSFR Components in this library

| Component | DSFR Documentation | Available in this library | Import path | |--------------------------|-----------------------------------------------------------------------------------------------------------------|:----------------------------------------------:|:-------------------------------:| | Accordion | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/accordeon | 🚫 | NA | | Alert | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/alerte | βœ… | @betagouv/ngx-dsfr/alert | | Back to top | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/retour-en-haut-de-page | βœ… (as a possible type in the Link Component) | @betagouv/ngx-dsfr/link | | Badge | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/badge | βœ… | @betagouv/ngx-dsfr/badge | | Breadcrumb | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/fil-d-ariane | 🚫 | NA | | Button | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/bouton | βœ… | @betagouv/ngx-dsfr/button | | Button group | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/groupe-de-boutons | 🚫 | NA | | Callout | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/mise-en-avant | 🚫 | NA | | Card | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/carte | 🚫 | NA | | Checkbox | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/case-a-cocher | βœ… | @betagouv/ngx-dsfr/checkbox | | Consent banner | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/gestionnaire-de-consentement | 🚫 | NA | | Content | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/contenu-medias | 🚫 | NA | | Display | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/parametre-d-affichage | 🚫 | NA | | Download | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/telechargement-de-fichier | 🚫 | NA | | Error pages | https://www.systeme-de-design.gouv.fr/elements-d-interface/modeles/page-d-erreurs | βœ… | @betagouv/ngx-dsfr/error-page | | Footer | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/pied-de-page | βœ… | @betagouv/ngx-dsfr/footer | | FranceConnect button | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/bouton-franceconnect | 🚫 | NA | | Header | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/en-tete | βœ… | @betagouv/ngx-dsfr/header | | Highlight | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/mise-en-exergue | 🚫 | NA | | Input | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/champ-de-saisie | βœ… | @betagouv/ngx-dsfr/input | | Link | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/lien | βœ… | @betagouv/ngx-dsfr/link | | Modal | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/modale | 🚫 | NA | | Navigation | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/navigation-principale | βœ… | @betagouv/ngx-dsfr/navigation | | Newsletter | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/lettre-d-information-et-reseaux-sociaux | 🚫 | NA | | Notice | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/bandeau-d-information-importante | 🚫 | NA | | Pagination | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/pagination | 🚫 | NA | | Password | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/mot-de-passe | βœ… | @betagouv/ngx-dsfr/password | | Quote | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/citation | 🚫 | NA | | Radio button | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/bouton-radio | βœ… | @betagouv/ngx-dsfr/radio | | Radio rich button | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/bouton-radio-riche | 🚫 | NA | | Search | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/barre-de-recherche | βœ… | @betagouv/ngx-dsfr/search-bar | | Select | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/liste-deroulante | βœ… | @betagouv/ngx-dsfr/select | | Share | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/partage | 🚫 | NA | | Sidemenu | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/menu-lateral | 🚫 | NA | | Skiplink | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/lien-d-evitement | 🚫 | NA | | Stepper | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/indicateur-d-etapes | βœ… | @betagouv/ngx-dsfr/stepper | | Summary | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/sommaire | 🚫 | NA | | Tab | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/onglet | βœ… | @betagouv/ngx-dsfr/tab | | Table | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/tableau | 🚫 | NA | | Tag | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/tag | βœ… | @betagouv/ngx-dsfr/tag | | Tile | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/tuile | βœ… | @betagouv/ngx-dsfr/tile | | Toggle | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/interrupteur | βœ… | @betagouv/ngx-dsfr/toggle | | Transcription | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/transcription | 🚫 | NA | | Translate | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/selecteur-de-langue | 🚫 | NA | | Upload | https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/ajout-de-fichier | 🚫 | NA |

This library was generated with Nx.

πŸ”Ž Smart, Fast and Extensible Build System

Build

Run nx build ngx-dsfr to build the project. The build artifacts will be stored in the dist/libs/ngx-dsfr directory.

The build phase actually goes through 3 steps:

  • the actual build of the library through the package executor of the @nx/angular Nx plugin. It uses ng-packagr under the hood
  • a second step where some CSS paths are rewritten within the CSS files copied from the @gouvfr/dsfr project to match the new project structure. The adapt-css-paths executor from our own @ngx-dsfr/architect Nx plugin is used here
  • a third step where the core-styling.scss file is compiled into CSS, thanks to the sass package

Running unit tests

Run nx test ngx-dsfr to execute the unit tests.