Gathering detailed insights and metrics for @utrecht/component-library-css
Gathering detailed insights and metrics for @utrecht/component-library-css
Gathering detailed insights and metrics for @utrecht/component-library-css
Gathering detailed insights and metrics for @utrecht/component-library-css
Work in Progress: Utrecht Design System based on the NL Design System architecture. Storybook: https://nl-design-system.github.io/utrecht/storybook/
npm install @utrecht/component-library-css
Typescript
Module System
Node Version
NPM Version
@utrecht/component-library-css@7.3.0
Updated on Jun 18, 2025
@utrecht/design-tokens@3.3.0
Updated on Jun 18, 2025
@utrecht/tooltip-react@1.0.0
Updated on Jun 18, 2025
@utrecht/tooltip-css@1.0.0
Updated on Jun 18, 2025
@utrecht/component-library-vue@2.3.1
Updated on Jun 16, 2025
@utrecht/design-tokens@3.2.0
Updated on May 27, 2025
TypeScript (73.02%)
SCSS (12.42%)
HTML (5.82%)
JavaScript (4.42%)
MDX (2.33%)
CSS (1.14%)
Vue (0.84%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
EUPL-1.2 License
29 Stars
3,715 Commits
23 Forks
7 Watchers
258 Branches
48 Contributors
Updated on Jun 28, 2025
Latest Version
7.3.0
Package Id
@utrecht/component-library-css@7.3.0
Unpacked Size
842.38 kB
Size
73.56 kB
File Count
6
NPM Version
10.9.2
Node Version
22.16.0
Published on
Jun 18, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
97
CSS components are developed using BEM class names and the stylesheets can be included in your page side-effect free. Apply the class names to your elements to make them stylable using design tokens.
1npm install --save-dev --save-exact @utrecht/component-library-css 2
Theoretically you can include the components in your HTML page like so, but this is not the typical use case of this library:
1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <title>Example page</title> 5 <link rel="stylesheet" href="node_modules/@utrecht/component-library-css" /> 6 </head> 7 <body> 8 <h1 class="utrecht-heading-1">Home</h1> 9 <p class="utrecht-paragraph">Hello, world!</p> 10 </body> 11</html>
The BEM class names can be particularly useful to include only the CSS you need using CSS modules (in React).
1import React from "react"; 2import style from "@utrecht/component-library-css"; 3 4export default class ExamplePage extends React.Component { 5 render() { 6 return ( 7 <> 8 <h1 className={btn["utrecht-heading-1"]}>Home</h1> 9 <p className={btn["utrecht-paragraph"]}>Hello, world!</p> 10 </> 11 ); 12 } 13}
These files implement a white-label component library. You need to include a theme with CSS variables to make it look good.
dist/html.css
: component library for opinionated styling of HTML elements. Add the utrecht-html
class name to use it.dist/index.css
: component library for opinionated styling of HTML elements. Use the BEM class names to use the components.dist/prince-xml.css
: component library that works with Prince XML, to generate accessible PDFs from HTML files.No vulnerabilities found.
Reason
30 commit(s) and 12 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
all changesets reviewed
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
all dependencies are pinned
Details
Reason
SAST tool is not run on all commits -- score normalized to 5
Details
Reason
branch protection is not maximal on development and all release branches
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
83 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More